commit python-django-polymorphic for openSUSE:Factory

2022-01-08 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-django-polymorphic for 
openSUSE:Factory checked in at 2022-01-08 23:23:20

Comparing /work/SRC/openSUSE:Factory/python-django-polymorphic (Old)
 and  /work/SRC/openSUSE:Factory/.python-django-polymorphic.new.1892 (New)


Package is "python-django-polymorphic"

Sat Jan  8 23:23:20 2022 rev:3 rq:944618 version:3.1

Changes:

--- 
/work/SRC/openSUSE:Factory/python-django-polymorphic/python-django-polymorphic.changes
  2021-12-26 13:30:43.614968602 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-django-polymorphic.new.1892/python-django-polymorphic.changes
2022-01-08 23:23:49.566241776 +0100
@@ -1,0 +2,5 @@
+Fri Jan  7 03:47:57 UTC 2022 - John Vandenberg 
+
+- Skip Tumbleweed Python 3.6 incompatible with Django 4
+
+---



Other differences:
--
++ python-django-polymorphic.spec ++
--- /var/tmp/diff_new_pack.EGvgNW/_old  2022-01-08 23:23:50.006242135 +0100
+++ /var/tmp/diff_new_pack.EGvgNW/_new  2022-01-08 23:23:50.010242138 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-django-polymorphic
 #
-# Copyright (c) 2020 SUSE LLC
+# Copyright (c) 2022 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,6 +18,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 %define skip_python2 1
+%define skip_python36 1
 Name:   python-django-polymorphic
 Version:3.1
 Release:0


commit python-django-polymorphic for openSUSE:Factory

2021-12-26 Thread Source-Sync
Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-django-polymorphic for 
openSUSE:Factory checked in at 2021-12-26 13:30:26

Comparing /work/SRC/openSUSE:Factory/python-django-polymorphic (Old)
 and  /work/SRC/openSUSE:Factory/.python-django-polymorphic.new.2520 (New)


Package is "python-django-polymorphic"

Sun Dec 26 13:30:26 2021 rev:2 rq:942507 version:3.1

Changes:

--- 
/work/SRC/openSUSE:Factory/python-django-polymorphic/python-django-polymorphic.changes
  2020-09-09 18:11:27.575718148 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-django-polymorphic.new.2520/python-django-polymorphic.changes
2021-12-26 13:30:43.614968602 +0100
@@ -1,0 +2,24 @@
+Sun Dec 26 03:43:36 UTC 2021 - John Vandenberg 
+
+- Remove no longer needed Source runtests.py
+- Added docs from source
+- Update to v3.1.0
+  * Added support for Django 4.0.
+  * Fixed crash when the admin "add type" view has no choices; will
+show a permission denied.
+  * Fixed missing locale folder in sdist.
+  * Fixed missing QuerySet.bulk_create(.., ignore_conflicts=True)
+parameter support.
+  * Fixed FilteredRelation support.
+  * Fixed supporting class keyword arguments in model definitions
+for __init_subclass__().
+  * Fixed including polymorphic.tests.migrations in the sdist.
+  * Fixed non-polymorphic parent handling, which has no _base_objects
+  * Fixed missing widgets support for modelform_factory().
+  * Fixed has_changed handling for polymorphic_ctype_id due to
+implicit str to int conversions.
+  * Fixed Q object handling when lists are used
+(e.g. in django-advanced-filters).
+  * Fixed Django Admin support when using a script-prefix.
+
+---

Old:

  django-polymorphic-3.0.0.tar.gz
  runtests.py

New:

  django-polymorphic-3.1.tar.gz



Other differences:
--
++ python-django-polymorphic.spec ++
--- /var/tmp/diff_new_pack.Q3jGMY/_old  2021-12-26 13:30:44.118968954 +0100
+++ /var/tmp/diff_new_pack.Q3jGMY/_new  2021-12-26 13:30:44.126968959 +0100
@@ -19,21 +19,20 @@
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 %define skip_python2 1
 Name:   python-django-polymorphic
-Version:3.0.0
+Version:3.1
 Release:0
 Summary:Polymorphic inheritance for Django models
 License:BSD-3-Clause
 Group:  Development/Languages/Python
 URL:https://github.com/django-polymorphic/django-polymorphic
-Source: 
https://github.com/django-polymorphic/django-polymorphic/archive/%{version}.tar.gz#/django-polymorphic-%{version}.tar.gz
-Source1:
https://raw.githubusercontent.com/django-polymorphic/django-polymorphic/master/runtests.py
+Source: 
https://github.com/django-polymorphic/django-polymorphic/archive/v%{version}.tar.gz#/django-polymorphic-%{version}.tar.gz
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
-Requires:   python-Django >= 1.11
+Requires:   python-Django >= 2.1
 BuildArch:  noarch
 # SECTION test requirements
-BuildRequires:  %{python_module Django >= 1.11}
+BuildRequires:  %{python_module Django >= 2.1}
 BuildRequires:  %{python_module dj-database-url}
 # /SECTION
 %python_subpackages
@@ -43,7 +42,6 @@
 
 %prep
 %setup -q -n django-polymorphic-%{version}
-cp %{SOURCE1} .
 
 %build
 %python_build
@@ -53,10 +51,10 @@
 %python_expand %fdupes %{buildroot}%{$python_sitelib}
 
 %check
-%python_exec runtests.py
+%python_exec runtests.py -v 2
 
 %files %{python_files}
-%doc README.rst
+%doc README.rst docs/*.rst
 %license LICENSE
 %{python_sitelib}/*
 

++ django-polymorphic-3.0.0.tar.gz -> django-polymorphic-3.1.tar.gz ++
 2757 lines of diff (skipped)