Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-json5 for openSUSE:Factory 
checked in at 2023-01-05 15:00:39
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-json5 (Old)
 and      /work/SRC/openSUSE:Factory/.python-json5.new.1563 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-json5"

Thu Jan  5 15:00:39 2023 rev:8 rq:1055991 version:0.9.12

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-json5/python-json5.changes        
2022-09-25 15:35:55.947713885 +0200
+++ /work/SRC/openSUSE:Factory/.python-json5.new.1563/python-json5.changes      
2023-01-05 15:00:57.989056209 +0100
@@ -1,0 +2,7 @@
+Wed Jan  4 19:58:43 UTC 2023 - Dirk Müller <dmuel...@suse.com>
+
+- update to 0.9.12:
+  * fix dump error on python 2
+  * fix GitHub actions 
+
+-------------------------------------------------------------------

Old:
----
  pyjson5-0.9.10.tar.gz

New:
----
  pyjson5-0.9.12.tar.gz

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

Other differences:
------------------
++++++ python-json5.spec ++++++
--- /var/tmp/diff_new_pack.4LgL20/_old  2023-01-05 15:00:59.133062240 +0100
+++ /var/tmp/diff_new_pack.4LgL20/_new  2023-01-05 15:00:59.137062261 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-json5
 #
-# 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
@@ -25,7 +25,7 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:           python-json5
-Version:        0.9.10
+Version:        0.9.12
 Release:        0
 Summary:        A Python implementation of the JSON5 data format
 License:        Apache-2.0

++++++ pyjson5-0.9.10.tar.gz -> pyjson5-0.9.12.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pyjson5-0.9.10/.github/workflows/ci.yml 
new/pyjson5-0.9.12/.github/workflows/ci.yml
--- old/pyjson5-0.9.10/.github/workflows/ci.yml 2022-08-18 23:16:02.000000000 
+0200
+++ new/pyjson5-0.9.12/.github/workflows/ci.yml 2023-01-03 04:08:23.000000000 
+0100
@@ -8,7 +8,7 @@
     runs-on: ubuntu-latest
     strategy:
       matrix:
-        python-version: [3.6, 3.7, 3.8]
+        python-version: [3.8, 3.11]
 
     steps:
     - uses: actions/checkout@v2
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pyjson5-0.9.10/README.md new/pyjson5-0.9.12/README.md
--- old/pyjson5-0.9.10/README.md        2022-08-18 23:16:02.000000000 +0200
+++ new/pyjson5-0.9.12/README.md        2023-01-03 04:08:23.000000000 +0100
@@ -61,6 +61,15 @@
 
 ## Version History / Release Notes
 
+* v0.9.12 (2023-01-02)
+    * Fix GitHub Actions config file to no longer test against
+      Python 3.6 or 3.7. For now we will only test against an
+      "oldest" release (3.8 in this case) and a "current"
+      release (3.11 in this case).
+* v0.9.11 (2023-01-02)
+    * [GitHub issue #60](https://github.com/dpranke/pyjson5/issues/60)
+      Fixed minor Python2 compatibility issue by referring to
+      `float("inf")` instead of `math.inf`.
 * v0.9.10 (2022-08-18)
     * [GitHub issue #58](https://github.com/dpranke/pyjson5/issues/58)
       Updated the //README.md to be clear that parsing arbitrary JS
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pyjson5-0.9.10/json5/lib.py 
new/pyjson5-0.9.12/json5/lib.py
--- old/pyjson5-0.9.10/json5/lib.py     2022-08-18 23:16:02.000000000 +0200
+++ new/pyjson5-0.9.12/json5/lib.py     2023-01-03 04:08:23.000000000 +0100
@@ -264,12 +264,12 @@
         s = u'false'
     elif obj is None:
         s = u'null'
-    elif obj == math.inf:
+    elif obj == float('inf'):
         if allow_nan:
             s = u'Infinity'
         else:
             raise ValueError()
-    elif obj == -math.inf:
+    elif obj == float('-inf'):
         if allow_nan:
             s = u'-Infinity'
         else:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pyjson5-0.9.10/json5/version.py 
new/pyjson5-0.9.12/json5/version.py
--- old/pyjson5-0.9.10/json5/version.py 2022-08-18 23:16:02.000000000 +0200
+++ new/pyjson5-0.9.12/json5/version.py 2023-01-03 04:08:23.000000000 +0100
@@ -12,4 +12,4 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-VERSION = '0.9.10'
+VERSION = '0.9.12'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pyjson5-0.9.10/setup.py new/pyjson5-0.9.12/setup.py
--- old/pyjson5-0.9.10/setup.py 2022-08-18 23:16:02.000000000 +0200
+++ new/pyjson5-0.9.12/setup.py 2023-01-03 04:08:23.000000000 +0100
@@ -59,5 +59,7 @@
         'Programming Language :: Python :: 3',
         'Programming Language :: Python :: 3.8',
         'Programming Language :: Python :: 3.9',
+        'Programming Language :: Python :: 3.10',
+        'Programming Language :: Python :: 3.11',
     ],
 )

Reply via email to