Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-django-picklefield for 
openSUSE:Factory checked in at 2023-01-04 17:53:39
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-django-picklefield (Old)
 and      /work/SRC/openSUSE:Factory/.python-django-picklefield.new.1563 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-django-picklefield"

Wed Jan  4 17:53:39 2023 rev:20 rq:1055856 version:3.1.0

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/python-django-picklefield/python-django-picklefield.changes
      2022-05-12 22:58:42.044663107 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-django-picklefield.new.1563/python-django-picklefield.changes
    2023-01-04 17:53:56.814656977 +0100
@@ -1,0 +2,7 @@
+Wed Jan  4 14:13:35 UTC 2023 - Dirk Müller <[email protected]>
+
+- update to 3.1.0:
+  * Added testing against Django 3.2 and 4.0.
+  * addressed a packaging issue with 3.0.0
+
+-------------------------------------------------------------------

Old:
----
  v3.0.1.tar.gz

New:
----
  v3.1.0.tar.gz

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

Other differences:
------------------
++++++ python-django-picklefield.spec ++++++
--- /var/tmp/diff_new_pack.V7AyJk/_old  2023-01-04 17:53:57.626661763 +0100
+++ /var/tmp/diff_new_pack.V7AyJk/_new  2023-01-04 17:53:57.646661881 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-django-picklefield
 #
-# Copyright (c) 2022 SUSE LLC
+# Copyright (c) 2023 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -20,7 +20,7 @@
 %define skip_python2 1
 %define skip_python36 1
 Name:           python-django-picklefield
-Version:        3.0.1
+Version:        3.1.0
 Release:        0
 Summary:        Pickled object field for Django
 License:        MIT

++++++ v3.0.1.tar.gz -> v3.1.0.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django-picklefield-3.0.1/.coveragerc 
new/django-picklefield-3.1.0/.coveragerc
--- old/django-picklefield-3.0.1/.coveragerc    2020-06-05 18:03:40.000000000 
+0200
+++ new/django-picklefield-3.1.0/.coveragerc    1970-01-01 01:00:00.000000000 
+0100
@@ -1,8 +0,0 @@
-[run]
-source = picklefield
-branch = True
-
-[report]
-exclude_lines =
-    pragma: no cover
-    except ImportError:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django-picklefield-3.0.1/.github/workflows/test.yml 
new/django-picklefield-3.1.0/.github/workflows/test.yml
--- old/django-picklefield-3.0.1/.github/workflows/test.yml     1970-01-01 
01:00:00.000000000 +0100
+++ new/django-picklefield-3.1.0/.github/workflows/test.yml     2022-06-18 
22:13:08.000000000 +0200
@@ -0,0 +1,55 @@
+name: Test
+
+on: [push, pull_request]
+
+jobs:
+  test:
+    runs-on: ubuntu-latest
+    strategy:
+      fail-fast: false
+      max-parallel: 5
+      matrix:
+        python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']
+
+    steps:
+    - uses: actions/checkout@v2
+
+    - name: Set up Python ${{ matrix.python-version }}
+      uses: actions/setup-python@v2
+      with:
+        python-version: ${{ matrix.python-version }}
+
+    - name: Get pip cache dir
+      id: pip-cache
+      run: |
+        echo "::set-output name=dir::$(pip cache dir)"
+    - name: Cache
+      uses: actions/cache@v2
+      with:
+        path: ${{ steps.pip-cache.outputs.dir }}
+        key:
+          ${{ matrix.python-version }}-v1-${{ hashFiles('**/setup.py') }}-${{ 
hashFiles('**/tox.ini') }}
+        restore-keys: |
+          ${{ matrix.python-version }}-v1-
+    - name: Install dependencies
+      run: |
+        python -m pip install --upgrade pip
+        python -m pip install --upgrade tox tox-gh-actions
+    - name: Tox tests
+      run: |
+        tox -v
+    - name: Coveralls
+      uses: AndreMiras/coveralls-python-action@develop
+      with:
+        parallel: true
+        flag-name: Unit Test
+
+  coveralls_finish:
+    needs: test
+    runs-on: ubuntu-latest
+    steps:
+    - name: Coveralls Finished
+      uses: AndreMiras/coveralls-python-action@develop
+      with:
+        parallel-finished: true
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django-picklefield-3.0.1/.travis.yml 
new/django-picklefield-3.1.0/.travis.yml
--- old/django-picklefield-3.0.1/.travis.yml    2020-06-05 18:03:40.000000000 
+0200
+++ new/django-picklefield-3.1.0/.travis.yml    1970-01-01 01:00:00.000000000 
+0100
@@ -1,34 +0,0 @@
-dist: bionic
-sudo: false
-language: python
-cache: pip
-python:
-  - 3.5
-  - 3.6
-  - 3.7
-  - 3.8
-stages:
-  - lint
-  - test
-jobs:
-  fast_finish: true
-  include:
-    - { stage: lint, env: TOXENV=flake8, python: 3.6 }
-    - { stage: lint, env: TOXENV=isort, python: 3.6 }
-
-install:
-- pip install tox coveralls tox-travis
-script:
-- tox
-after_success:
-- if [ -f .coverage ]; then coveralls; fi
-before_deploy: "pip install django"
-deploy:
-  provider: pypi
-  user: charettes
-  password:
-    secure: 
Ix/iLGKu+usjaNGPIKRzvgdZz8TVxReiMFLorgMpHb9P29tgIBQSDzVmo8gzUi+LF4SQs2AdnuYJY15ap68JX7iLfCuWWYIvIqgMLb3W64jfUDg9KpLJQYCv6cTKQHoDVtVTg0jXJmauEYMMYuqmdrSgZ6rSfpsbajMrveCzVuStb7kd5H4WPX3/j4JfCmr07CyAi85rLAnaIfmCYADWC4nrYll7+0Ugke64C4KstY0l6HYBNTT5ZwJvXSNd0VQd31b5okv8bwjGXzeVrbgIAe+c1p0lS11hsNqfLL/rrnlvgC7P7568TxGwWVmIDJm131r1K7skLscEfCuPbJJ3oqljxLQMQIJ4JbR12HtRwB93dOnJOgCbqySAJAZHUvkm2r3VAO8BJK3xYnJg/2IGrxolDQxwJi2SMEgwqQZx3thTFKXvviiWn5dnLjiNRpSOHUzayCVYga7WAgVksKVMbmtcNrJWwrAHtWLxo9vnM2W+6JNFeXiGIIwGu7qJ/Sz/qCuv/uKibbFqhUJfATXf5HhSJ3yIM/Ef04/SSpBqkYcFcrGLdzzW2Bpv4jscv4EcNyGDxnzeJtvXWVceoW0g7XweUn4b5P+NvOSV4YCjJ04BU4r/upV7+ulkQxnCWot2MD0zhvlodldn+6tGfdBbYJ/KlBHQjwdjFFKaxqRkuyA=
-  distributions: sdist bdist_wheel
-  on:
-    tags: true
-    condition: "$TRAVIS_PYTHON_VERSION = 3.5"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django-picklefield-3.0.1/README.rst 
new/django-picklefield-3.1.0/README.rst
--- old/django-picklefield-3.0.1/README.rst     2020-06-05 18:03:40.000000000 
+0200
+++ new/django-picklefield-3.1.0/README.rst     2022-06-18 22:13:08.000000000 
+0200
@@ -9,8 +9,8 @@
     :target: https://pypi.python.org/pypi/django-picklefield/
     :alt: Latest Version
 
-.. image:: https://travis-ci.org/gintas/django-picklefield.svg?branch=master
-    :target: https://travis-ci.org/gintas/django-picklefield
+.. image:: 
https://github.com/gintas/django-picklefield/workflows/Test/badge.svg?branch=master
+    :target: https://github.com/gintas/django-picklefield/actions
     :alt: Build Status
 
 .. image:: 
https://coveralls.io/repos/gintas/django-picklefield/badge.svg?branch=master
@@ -162,6 +162,16 @@
 Changes
 -------
 
+Changes in version 3.1.0
+========================
+
+* Added testing against Django 3.2 and 4.0.
+
+Changes in version 3.0.1
+========================
+
+* None; addressed a packaging issue with 3.0.0
+
 Changes in version 3.0.0
 ========================
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django-picklefield-3.0.1/picklefield/__init__.py 
new/django-picklefield-3.1.0/picklefield/__init__.py
--- old/django-picklefield-3.0.1/picklefield/__init__.py        2020-06-05 
18:03:40.000000000 +0200
+++ new/django-picklefield-3.1.0/picklefield/__init__.py        2022-06-18 
22:13:08.000000000 +0200
@@ -1,5 +1,3 @@
-from __future__ import unicode_literals
-
 import django.utils.version
 
 from .constants import DEFAULT_PROTOCOL
@@ -7,6 +5,6 @@
 
 __all__ = 'VERSION', '__version__', 'DEFAULT_PROTOCOL', 'PickledObjectField'
 
-VERSION = (3, 0, 1, 'final', 0)
+VERSION = (3, 1, 0, 'final', 0)
 
 __version__ = django.utils.version.get_version(VERSION)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django-picklefield-3.0.1/setup.cfg 
new/django-picklefield-3.1.0/setup.cfg
--- old/django-picklefield-3.0.1/setup.cfg      2020-06-05 18:03:40.000000000 
+0200
+++ new/django-picklefield-3.1.0/setup.cfg      2022-06-18 22:13:08.000000000 
+0200
@@ -6,3 +6,13 @@
 include_trailing_comma=true
 multi_line_output=5
 not_skip=__init__.py
+
+[coverage:run]
+source = picklefield
+branch = 1
+relative_files = 1
+
+[coverage:report]
+exclude_lines =
+    pragma: no cover
+    except ImportError:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django-picklefield-3.0.1/setup.py 
new/django-picklefield-3.1.0/setup.py
--- old/django-picklefield-3.0.1/setup.py       2020-06-05 18:03:40.000000000 
+0200
+++ new/django-picklefield-3.1.0/setup.py       2022-06-18 22:13:08.000000000 
+0200
@@ -1,5 +1,3 @@
-from __future__ import unicode_literals
-
 from setuptools import find_packages, setup
 
 import picklefield
@@ -20,15 +18,14 @@
         'Development Status :: 5 - Production/Stable',
         'Environment :: Web Environment',
         'Framework :: Django',
-        'Framework :: Django :: 2.2',
-        'Framework :: Django :: 3.0',
+        'Framework :: Django :: 3.2',
+        'Framework :: Django :: 4.0',
         'Intended Audience :: Developers',
         'License :: OSI Approved :: MIT License',
         'Operating System :: OS Independent',
         'Programming Language :: Python',
         'Programming Language :: Python :: 3 :: Only',
         'Programming Language :: Python :: 3',
-        'Programming Language :: Python :: 3.5',
         'Programming Language :: Python :: 3.6',
         'Programming Language :: Python :: 3.7',
         'Programming Language :: Python :: 3.8',
@@ -38,7 +35,7 @@
     keywords=['django pickle model field'],
     packages=find_packages(exclude=['tests', 'tests.*']),
     python_requires='>=3',
-    install_requires=['Django>=2.2'],
+    install_requires=['Django>=3.2'],
     extras_require={
         'tests': ['tox'],
     },
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django-picklefield-3.0.1/tests/settings.py 
new/django-picklefield-3.1.0/tests/settings.py
--- old/django-picklefield-3.0.1/tests/settings.py      2020-06-05 
18:03:40.000000000 +0200
+++ new/django-picklefield-3.1.0/tests/settings.py      2022-06-18 
22:13:08.000000000 +0200
@@ -9,3 +9,6 @@
 INSTALLED_APPS = [
     'tests',
 ]
+
+USE_TZ = False
+DEFAULT_AUTO_FIELD = 'django.db.models.AutoField'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/django-picklefield-3.0.1/tox.ini 
new/django-picklefield-3.1.0/tox.ini
--- old/django-picklefield-3.0.1/tox.ini        2020-06-05 18:03:40.000000000 
+0200
+++ new/django-picklefield-3.1.0/tox.ini        2022-06-18 22:13:08.000000000 
+0200
@@ -4,32 +4,38 @@
 envlist =
     flake8,
     isort,
-    py35-2.2,
-    py36-{2.2,3.0,master},
-    py37-{2.2,3.0,master},
-    py38-{2.2,3.0,master},
+    py36-3.2,
+    py37-3.2,
+    py38-{3.2,4.0,main},
+    py39-{3.2,4.0,main},
+    py310-{3.2,4.0,main},
 
-[tox:travis]
-3.5 = py35
-3.6 = py36
-3.7 = py37
-3.8 = py38
+[gh-actions]
+python =
+    3.6: py36, flake8, isort
+    3.7: py37
+    3.8: py38
+    3.9: py39
+    3.10: py310
 
 [testenv]
 basepython =
-    py35: python3.5
     py36: python3.6
     py37: python3.7
     py38: python3.8
+    py39: python3.9
+    py310: python3.10
 usedevelop = true
 commands =
-    {envpython} -R -Wonce {envbindir}/coverage run --branch -m django test -v2 
--settings=tests.settings {posargs}
+    {envpython} -R -Wonce {envbindir}/coverage run -a -m django test -v2 
--settings=tests.settings {posargs}
     coverage report -m
 deps =
     coverage
-    2.2: Django>=2.2,<3.0
-    3.0: Django>=3.0,<3.1
-    master: https://github.com/django/django/archive/master.tar.gz
+    3.2: Django>=3.0,<3.1
+    4.0: Django>=4.0,<4.1
+    main: https://github.com/django/django/archive/main.tar.gz
+passenv =
+    GITHUB_*
 
 [testenv:flake8]
 usedevelop = false

Reply via email to