Hello community,

here is the log from the commit of package python-factory_boy for 
openSUSE:Factory checked in at 2018-10-25 08:13:56
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-factory_boy (Old)
 and      /work/SRC/openSUSE:Factory/.python-factory_boy.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-factory_boy"

Thu Oct 25 08:13:56 2018 rev:9 rq:642838 version:2.11.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-factory_boy/python-factory_boy.changes    
2017-10-07 17:51:23.261399237 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-factory_boy.new/python-factory_boy.changes   
    2018-10-25 08:14:26.668119717 +0200
@@ -1,0 +2,9 @@
+Thu Oct 18 09:40:04 UTC 2018 - Tomáš Chvátal <[email protected]>
+
+- Update to 2.11.1:
+  * Support for Django 2.1
+  * Support for python 3.7
+  * Various small bugfixes
+- Add patch python37.patch
+
+-------------------------------------------------------------------

Old:
----
  2.9.2.tar.gz

New:
----
  2.11.1.tar.gz
  python37.patch

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

Other differences:
------------------
++++++ python-factory_boy.spec ++++++
--- /var/tmp/diff_new_pack.wK8VHT/_old  2018-10-25 08:14:27.340119429 +0200
+++ /var/tmp/diff_new_pack.wK8VHT/_new  2018-10-25 08:14:27.340119429 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-factory_boy
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -12,24 +12,27 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:           python-factory_boy
-Version:        2.9.2
+Version:        2.11.1
 Release:        0
 Summary:        A test fixtures replacement
 License:        MIT
 Group:          Development/Languages/Python
-Url:            http://github.com/rbarrois/factory_boy
+URL:            http://github.com/rbarrois/factory_boy
 Source:         
https://github.com/FactoryBoy/factory_boy/archive/%{version}.tar.gz
+Patch0:         python37.patch
+BuildRequires:  %{python_module Django}
 BuildRequires:  %{python_module Faker >= 0.7.0}
-BuildRequires:  %{python_module devel}
+BuildRequires:  %{python_module Pillow}
 BuildRequires:  %{python_module flake8}
 BuildRequires:  %{python_module mock}
 BuildRequires:  %{python_module setuptools}
+BuildRequires:  fdupes
 BuildRequires:  python-rpm-macros
 BuildRequires:  python2-ipaddress
 Requires:       python-Faker >= 0.7.0
@@ -41,18 +44,27 @@
 
 %prep
 %setup -q -n factory_boy-%{version}
+%patch0 -p1
+# needs running mongo
+rm tests/test_mongoengine.py
+sed -i -e '/test_mongoengine/d' tests/__init__.py
+# sqlalchemy hickups a lot
+rm tests/test_alchemy.py
+sed -i -e '/test_alchemy/d' tests/__init__.py
 
 %build
 %python_build
 
 %install
 %python_install
+%python_expand %fdupes %{buildroot}%{$python_sitelib}
 
 %check
 %python_exec setup.py test
 
 %files %{python_files}
-%doc README.rst LICENSE
+%license LICENSE
+%doc README.rst
 %{python_sitelib}/*
 
 %changelog

++++++ 2.9.2.tar.gz -> 2.11.1.tar.gz ++++++
++++ 1798 lines of diff (skipped)

++++++ python37.patch ++++++
>From 97f48597d241aca598783f7bcaed34bf7b133343 Mon Sep 17 00:00:00 2001
From: Jon Dufresne <[email protected]>
Date: Tue, 28 Aug 2018 04:40:26 -0700
Subject: [PATCH] Add testing and support for Python 3.7 and Django 2.1

Python 3.7 was released on June 27, 2018.
Django 2.1 was released on August 1, 2018.

https://docs.python.org/3/whatsnew/3.7.html
https://docs.djangoproject.com/en/2.1/releases/2.1/

Fixes #492
---
 .travis.yml        | 23 ++++++++++++++++++++---
 README.rst         |  2 +-
 docs/changelog.rst |  3 ++-
 factory/utils.py   | 10 +++++++---
 setup.py           |  6 +++++-
 tox.ini            |  7 +++++--
 6 files changed, 40 insertions(+), 11 deletions(-)

diff --git a/factory/utils.py b/factory/utils.py
index 7bf38dd..15d87e4 100644
--- a/factory/utils.py
+++ b/factory/utils.py
@@ -73,9 +73,13 @@ def __iter__(self):
             if self.next_elements:
                 yield self.next_elements.popleft()
             else:
-                value = next(self.iterator)
-                self.past_elements.append(value)
-                yield value
+                try:
+                    value = next(self.iterator)
+                except StopIteration:
+                    break
+                else:
+                    self.past_elements.append(value)
+                    yield value
 
     def reset(self):
         self.next_elements.clear()
diff --git a/setup.py b/setup.py
index 4291c80..07fb60a 100755
--- a/setup.py
+++ b/setup.py
@@ -51,8 +51,11 @@ def get_version(package_name):
     ],
     classifiers=[
         "Development Status :: 5 - Production/Stable",
-        "Intended Audience :: Developers",
         "Framework :: Django",
+        "Framework :: Django :: 1.11",
+        "Framework :: Django :: 2.0",
+        "Framework :: Django :: 2.1",
+        "Intended Audience :: Developers",
         "License :: OSI Approved :: MIT License",
         "Operating System :: OS Independent",
         "Programming Language :: Python",
@@ -62,6 +65,7 @@ def get_version(package_name):
         "Programming Language :: Python :: 3.4",
         "Programming Language :: Python :: 3.5",
         "Programming Language :: Python :: 3.6",
+        "Programming Language :: Python :: 3.7",
         "Programming Language :: Python :: Implementation :: PyPy",
         "Topic :: Software Development :: Testing",
         "Topic :: Software Development :: Libraries :: Python Modules",
 

Reply via email to