Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-aenum for openSUSE:Factory 
checked in at 2023-12-22 22:42:05
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-aenum (Old)
 and      /work/SRC/openSUSE:Factory/.python-aenum.new.28375 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-aenum"

Fri Dec 22 22:42:05 2023 rev:11 rq:1134618 version:3.1.15

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-aenum/python-aenum.changes        
2023-11-14 21:42:12.630794118 +0100
+++ /work/SRC/openSUSE:Factory/.python-aenum.new.28375/python-aenum.changes     
2023-12-22 22:42:16.866084868 +0100
@@ -1,0 +2,12 @@
+Thu Dec 14 09:12:26 UTC 2023 - Petr Gajdos <pgaj...@suse.com>
+
+- update to 3.1.15
+  * remove Python 2.6 code
+  * add Python 3.12 enhancements
+  * split source code into separate files
+  * Enum and Flag inherit from stdlib versions
+  * support inheriting from empty NamedTuples
+  * prevent test_v3.py from being run as main
+  * Move Py2/3 specific code to dedicated files
+
+-------------------------------------------------------------------

Old:
----
  aenum-3.1.12.tar.gz

New:
----
  aenum-3.1.15.tar.gz

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

Other differences:
------------------
++++++ python-aenum.spec ++++++
--- /var/tmp/diff_new_pack.auDXKl/_old  2023-12-22 22:42:17.394104223 +0100
+++ /var/tmp/diff_new_pack.auDXKl/_new  2023-12-22 22:42:17.394104223 +0100
@@ -18,12 +18,12 @@
 
 %{?sle15_python_module_pythons}
 Name:           python-aenum
-Version:        3.1.12
+Version:        3.1.15
 Release:        0
 Summary:        Advanced Enumerations, NamedTuples, and NamedConstants
 License:        BSD-3-Clause
 URL:            https://github.com/ethanfurman/aenum
-Source:         
https://files.pythonhosted.org/packages/source/a/aenum/aenum-%{version}.tar.gz
+Source:         
https://github.com/ethanfurman/aenum/archive/refs/tags/%{version}.tar.gz#/aenum-%{version}.tar.gz
 # PATCH-FIX-UPSTREAM tempdir_missing.patch gh#ethanfurman/aenum#12 
mc...@suse.com
 # Make test file into a proper one.
 Patch0:         tempdir_missing.patch

++++++ aenum-3.1.12.tar.gz -> aenum-3.1.15.tar.gz ++++++
++++ 15215 lines of diff (skipped)

++++++ skip_failing_testcases.patch ++++++
--- /var/tmp/diff_new_pack.auDXKl/_old  2023-12-22 22:42:17.510108476 +0100
+++ /var/tmp/diff_new_pack.auDXKl/_new  2023-12-22 22:42:17.514108622 +0100
@@ -2,10 +2,10 @@
  aenum/test.py |    2 ++
  1 file changed, 2 insertions(+)
 
-Index: aenum-3.1.11/aenum/test_v3.py
+Index: aenum-3.1.15/aenum/test_v3.py
 ===================================================================
---- aenum-3.1.11.orig/aenum/test_v3.py
-+++ aenum-3.1.11/aenum/test_v3.py
+--- aenum-3.1.15.orig/aenum/test_v3.py
++++ aenum-3.1.15/aenum/test_v3.py
 @@ -65,6 +65,7 @@ class TestEnumV3(TestCase):
          self.Holiday = Holiday
  
@@ -14,10 +14,10 @@
      def test_stdlib_inheritence(self):
          # 3.4
          self.assertTrue(issubclass(self.Season, StdlibEnum))
-@@ -1883,6 +1884,7 @@ class TestExtendEnumV3(TestCase):
+@@ -1885,6 +1886,7 @@ class TestExtendEnumV3(TestCase):
          self.assertTrue(issubclass(Color, StdlibFlag))
  
-     @unittest.skipUnless(StdlibFlag, 'Stdlib Flag not available')
+     @unittest.skipUnless(StdlibFlag and pyver < PY3_11, 'Stdlib Flag not 
available')
 +    @unittest.skip('Failing test')
      def test_extend_flag_backwards_stdlib(self):
          class Color(StdlibFlag):

Reply via email to