Hello community,
here is the log from the commit of package python-django-picklefield for
openSUSE:Factory checked in at 2020-06-11 10:08:45
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-django-picklefield (Old)
and /work/SRC/openSUSE:Factory/.python-django-picklefield.new.3606 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-django-picklefield"
Thu Jun 11 10:08:45 2020 rev:16 rq:813221 version:3.0.1
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-django-picklefield/python-django-picklefield.changes
2020-06-10 00:51:46.099471159 +0200
+++
/work/SRC/openSUSE:Factory/.python-django-picklefield.new.3606/python-django-picklefield.changes
2020-06-11 10:09:07.896016218 +0200
@@ -1,0 +2,6 @@
+Wed Jun 10 12:04:25 UTC 2020 - Ondřej Súkup <[email protected]>
+
+- Update to 3.0.1
+ * no changelog
+
+-------------------------------------------------------------------
Old:
----
v3.0.0.tar.gz
New:
----
v3.0.1.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-django-picklefield.spec ++++++
--- /var/tmp/diff_new_pack.k4X1Lc/_old 2020-06-11 10:09:10.596024858 +0200
+++ /var/tmp/diff_new_pack.k4X1Lc/_new 2020-06-11 10:09:10.600024872 +0200
@@ -19,7 +19,7 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%define skip_python2 1
Name: python-django-picklefield
-Version: 3.0.0
+Version: 3.0.1
Release: 0
Summary: Pickled object field for Django
License: MIT
++++++ v3.0.0.tar.gz -> v3.0.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/django-picklefield-3.0.0/.travis.yml
new/django-picklefield-3.0.1/.travis.yml
--- old/django-picklefield-3.0.0/.travis.yml 2020-06-05 17:57:04.000000000
+0200
+++ new/django-picklefield-3.0.1/.travis.yml 2020-06-05 18:03:40.000000000
+0200
@@ -31,4 +31,4 @@
distributions: sdist bdist_wheel
on:
tags: true
- condition: "$TRAVIS_PYTHON_VERSION = 2.7"
+ condition: "$TRAVIS_PYTHON_VERSION = 3.5"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/django-picklefield-3.0.0/picklefield/__init__.py
new/django-picklefield-3.0.1/picklefield/__init__.py
--- old/django-picklefield-3.0.0/picklefield/__init__.py 2020-06-05
17:57:04.000000000 +0200
+++ new/django-picklefield-3.0.1/picklefield/__init__.py 2020-06-05
18:03:40.000000000 +0200
@@ -7,6 +7,6 @@
__all__ = 'VERSION', '__version__', 'DEFAULT_PROTOCOL', 'PickledObjectField'
-VERSION = (3, 0, 0, 'final', 0)
+VERSION = (3, 0, 1, 'final', 0)
__version__ = django.utils.version.get_version(VERSION)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/django-picklefield-3.0.0/setup.py
new/django-picklefield-3.0.1/setup.py
--- old/django-picklefield-3.0.0/setup.py 2020-06-05 17:57:04.000000000
+0200
+++ new/django-picklefield-3.0.1/setup.py 2020-06-05 18:03:40.000000000
+0200
@@ -20,7 +20,6 @@
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
- 'Framework :: Django :: 1.11',
'Framework :: Django :: 2.2',
'Framework :: Django :: 3.0',
'Intended Audience :: Developers',
@@ -39,7 +38,7 @@
keywords=['django pickle model field'],
packages=find_packages(exclude=['tests', 'tests.*']),
python_requires='>=3',
- install_requires=['Django>=1.11'],
+ install_requires=['Django>=2.2'],
extras_require={
'tests': ['tox'],
},