Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-django-webtest for 
openSUSE:Factory checked in at 2023-10-02 20:07:03
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-django-webtest (Old)
 and      /work/SRC/openSUSE:Factory/.python-django-webtest.new.28202 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-django-webtest"

Mon Oct  2 20:07:03 2023 rev:8 rq:1114696 version:1.9.11

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/python-django-webtest/python-django-webtest.changes  
    2023-01-04 17:53:59.710674046 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-django-webtest.new.28202/python-django-webtest.changes
   2023-10-02 20:09:42.837811917 +0200
@@ -1,0 +2,8 @@
+Mon Oct  2 07:19:01 UTC 2023 - Dirk Müller <[email protected]>
+
+- update to 1.9.11:
+  * Add support for official Python & Django versions
+  * Do not insert  WebtestAuthentication to the head of
+    DEFAULT_AUTHENTICATION_CLASSES.
+
+-------------------------------------------------------------------

Old:
----
  django-webtest-1.9.10.tar.gz

New:
----
  django-webtest-1.9.11.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-django-webtest.spec ++++++
--- /var/tmp/diff_new_pack.f36gkM/_old  2023-10-02 20:09:43.929851190 +0200
+++ /var/tmp/diff_new_pack.f36gkM/_new  2023-10-02 20:09:43.933851334 +0200
@@ -18,7 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:           python-django-webtest
-Version:        1.9.10
+Version:        1.9.11
 Release:        0
 Summary:        Django integration for WebTest
 License:        MIT

++++++ django-webtest-1.9.10.tar.gz -> django-webtest-1.9.11.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django-webtest-1.9.10/CHANGES.rst 
new/django-webtest-1.9.11/CHANGES.rst
--- old/django-webtest-1.9.10/CHANGES.rst       2022-03-02 14:29:40.000000000 
+0100
+++ new/django-webtest-1.9.11/CHANGES.rst       2023-09-18 20:22:44.000000000 
+0200
@@ -2,6 +2,13 @@
 CHANGES
 =======
 
+1.9.11 (2023-09-18)
+-------------------
+
+- Add support for official Python & Django versions
+
+- Do not insert  WebtestAuthentication to the head of 
DEFAULT_AUTHENTICATION_CLASSES.
+
 1.9.10 (2022-03-02)
 -------------------
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django-webtest-1.9.10/PKG-INFO 
new/django-webtest-1.9.11/PKG-INFO
--- old/django-webtest-1.9.10/PKG-INFO  2022-03-02 14:29:40.400406000 +0100
+++ new/django-webtest-1.9.11/PKG-INFO  2023-09-18 20:22:45.026117300 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: django-webtest
-Version: 1.9.10
+Version: 1.9.11
 Summary: Instant integration of Ian Bicking's WebTest 
(http://docs.pylonsproject.org/projects/webtest/) with Django's testing 
framework.
 Home-page: https://github.com/django-webtest/django-webtest
 Author: Mikhail Korobov
@@ -14,18 +14,17 @@
 Classifier: Development Status :: 5 - Production/Stable
 Classifier: Environment :: Web Environment
 Classifier: Framework :: Django
-Classifier: Framework :: Django :: 3.0
-Classifier: Framework :: Django :: 3.1
 Classifier: Framework :: Django :: 3.2
-Classifier: Framework :: Django :: 4.0
+Classifier: Framework :: Django :: 4.1
+Classifier: Framework :: Django :: 4.2
 Classifier: Intended Audience :: Developers
 Classifier: License :: OSI Approved :: MIT License
 Classifier: Programming Language :: Python
 Classifier: Programming Language :: Python :: 3
-Classifier: Programming Language :: Python :: 3.6
-Classifier: Programming Language :: Python :: 3.7
 Classifier: Programming Language :: Python :: 3.8
 Classifier: Programming Language :: Python :: 3.9
+Classifier: Programming Language :: Python :: 3.10
+Classifier: Programming Language :: Python :: 3.11
 Classifier: Programming Language :: Python :: Implementation :: CPython
 Classifier: Programming Language :: Python :: Implementation :: PyPy
 Classifier: Topic :: Software Development :: Libraries :: Python Modules
@@ -243,6 +242,13 @@
 CHANGES
 =======
 
+1.9.11 (2023-09-18)
+-------------------
+
+- Add support for official Python & Django versions
+
+- Do not insert  WebtestAuthentication to the head of 
DEFAULT_AUTHENTICATION_CLASSES.
+
 1.9.10 (2022-03-02)
 -------------------
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django-webtest-1.9.10/django_webtest/__init__.py 
new/django-webtest-1.9.11/django_webtest/__init__.py
--- old/django-webtest-1.9.10/django_webtest/__init__.py        2022-03-02 
14:29:40.000000000 +0100
+++ new/django-webtest-1.9.11/django_webtest/__init__.py        2023-09-18 
20:22:44.000000000 +0200
@@ -301,7 +301,7 @@
         if class_name not in classes:
             if isinstance(classes, tuple):
                 classes = list(classes)
-            classes.insert(0, class_name)
+            classes.append(class_name)
             drf_settings['DEFAULT_AUTHENTICATION_CLASSES'] = classes
 
     @property
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/django-webtest-1.9.10/django_webtest.egg-info/PKG-INFO 
new/django-webtest-1.9.11/django_webtest.egg-info/PKG-INFO
--- old/django-webtest-1.9.10/django_webtest.egg-info/PKG-INFO  2022-03-02 
14:29:40.000000000 +0100
+++ new/django-webtest-1.9.11/django_webtest.egg-info/PKG-INFO  2023-09-18 
20:22:44.000000000 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: django-webtest
-Version: 1.9.10
+Version: 1.9.11
 Summary: Instant integration of Ian Bicking's WebTest 
(http://docs.pylonsproject.org/projects/webtest/) with Django's testing 
framework.
 Home-page: https://github.com/django-webtest/django-webtest
 Author: Mikhail Korobov
@@ -14,18 +14,17 @@
 Classifier: Development Status :: 5 - Production/Stable
 Classifier: Environment :: Web Environment
 Classifier: Framework :: Django
-Classifier: Framework :: Django :: 3.0
-Classifier: Framework :: Django :: 3.1
 Classifier: Framework :: Django :: 3.2
-Classifier: Framework :: Django :: 4.0
+Classifier: Framework :: Django :: 4.1
+Classifier: Framework :: Django :: 4.2
 Classifier: Intended Audience :: Developers
 Classifier: License :: OSI Approved :: MIT License
 Classifier: Programming Language :: Python
 Classifier: Programming Language :: Python :: 3
-Classifier: Programming Language :: Python :: 3.6
-Classifier: Programming Language :: Python :: 3.7
 Classifier: Programming Language :: Python :: 3.8
 Classifier: Programming Language :: Python :: 3.9
+Classifier: Programming Language :: Python :: 3.10
+Classifier: Programming Language :: Python :: 3.11
 Classifier: Programming Language :: Python :: Implementation :: CPython
 Classifier: Programming Language :: Python :: Implementation :: PyPy
 Classifier: Topic :: Software Development :: Libraries :: Python Modules
@@ -243,6 +242,13 @@
 CHANGES
 =======
 
+1.9.11 (2023-09-18)
+-------------------
+
+- Add support for official Python & Django versions
+
+- Do not insert  WebtestAuthentication to the head of 
DEFAULT_AUTHENTICATION_CLASSES.
+
 1.9.10 (2022-03-02)
 -------------------
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django-webtest-1.9.10/setup.py 
new/django-webtest-1.9.11/setup.py
--- old/django-webtest-1.9.10/setup.py  2022-03-02 14:29:40.000000000 +0100
+++ new/django-webtest-1.9.11/setup.py  2023-09-18 20:22:44.000000000 +0200
@@ -4,7 +4,7 @@
 from setuptools import setup
 
 
-version = '1.9.10'
+version = '1.9.11'
 
 
 def _read(name):
@@ -48,18 +48,17 @@
         'Development Status :: 5 - Production/Stable',
         'Environment :: Web Environment',
         'Framework :: Django',
-        'Framework :: Django :: 3.0',
-        'Framework :: Django :: 3.1',
         'Framework :: Django :: 3.2',
-        'Framework :: Django :: 4.0',
+        'Framework :: Django :: 4.1',
+        'Framework :: Django :: 4.2',
         'Intended Audience :: Developers',
         'License :: OSI Approved :: MIT License',
         'Programming Language :: Python',
         'Programming Language :: Python :: 3',
-        'Programming Language :: Python :: 3.6',
-        'Programming Language :: Python :: 3.7',
         'Programming Language :: Python :: 3.8',
         'Programming Language :: Python :: 3.9',
+        'Programming Language :: Python :: 3.10',
+        'Programming Language :: Python :: 3.11',
         'Programming Language :: Python :: Implementation :: CPython',
         'Programming Language :: Python :: Implementation :: PyPy',
         'Topic :: Software Development :: Libraries :: Python Modules',
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django-webtest-1.9.10/tox.ini 
new/django-webtest-1.9.11/tox.ini
--- old/django-webtest-1.9.10/tox.ini   2022-03-02 14:29:40.000000000 +0100
+++ new/django-webtest-1.9.11/tox.ini   2023-09-18 20:22:44.000000000 +0200
@@ -1,18 +1,16 @@
 [tox]
 skip_missing_interpreters = true
 envlist =
-    {py37,py38,py39}-django{30,31,32}-{std,clocale,postgres}
-    {py38,py39}-django{40}-{std,clocale,postgres}
+    {py38,py39}-django{32,41,42}-{std,clocale,postgres}
 
 [testenv]
 deps=
     pytest
     pytest-django
     postgres: psycopg2-binary
-    django30: django >=3.0, <=3.1
-    django31: django >=3.1, <=3.2
     django32: django >=3.2, <=3.3
-    django40: django >=4.0, <=4.1
+    django41: django >=4.1, <=4.2
+    django42: django >=4.2, <=4.3
 setenv=
     clocale: LC_ALL=C
     postgres: USE_POSTGRES=true
@@ -23,7 +21,7 @@
     POSTGRES_USER
     POSTGRES_PASSWORD
     POSTGRES_NAME
-whitelist_externals = env
+allowlist_externals = env
 changedir=django_webtest_tests
 commands=
     env
@@ -32,6 +30,6 @@
 
 [testenv:travis]
 # use `tox -e travis` to update .travis.yml
-basepython=python2.7
+basepython=python3.11
 commands=
-    python django_webtest_tests/tox2travis.py
+    python tox2travis.py

Reply via email to