Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package yast2-python-bindings for openSUSE:Factory checked in at 2023-09-29 21:12:52 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/yast2-python-bindings (Old) and /work/SRC/openSUSE:Factory/.yast2-python-bindings.new.28202 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2-python-bindings" Fri Sep 29 21:12:52 2023 rev:54 rq:1114102 version:5.0.1 Changes: -------- --- /work/SRC/openSUSE:Factory/yast2-python-bindings/yast2-python-bindings.changes 2023-03-04 22:43:36.463865182 +0100 +++ /work/SRC/openSUSE:Factory/.yast2-python-bindings.new.28202/yast2-python-bindings.changes 2023-09-29 21:13:21.413278969 +0200 @@ -1,0 +2,11 @@ +Tue Sep 12 10:10:25 UTC 2023 - Samuel Cabrero <scabr...@suse.de> + +- Fix inspect.getargspec() removed in python3.11; (bsc#1215226); +- 5.0.1 + +------------------------------------------------------------------- +Wed Aug 30 20:16:10 UTC 2023 - Josef Reidinger <jreidin...@suse.cz> + +- 5.0.0 (#bsc1185510) + +------------------------------------------------------------------- Old: ---- yast2-python-bindings-4.6.0.tar.bz2 New: ---- yast2-python-bindings-5.0.1.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-python-bindings.spec ++++++ --- /var/tmp/diff_new_pack.B1t8qs/_old 2023-09-29 21:13:22.473317215 +0200 +++ /var/tmp/diff_new_pack.B1t8qs/_new 2023-09-29 21:13:22.473317215 +0200 @@ -23,7 +23,7 @@ %bcond_with python2 %endif Name: yast2-python-bindings -Version: 4.6.0 +Version: 5.0.1 Release: 0 Summary: Python bindings for the YaST platform License: GPL-2.0-only ++++++ yast2-python-bindings-4.6.0.tar.bz2 -> yast2-python-bindings-5.0.1.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-python-bindings-4.6.0/package/yast2-python-bindings.changes new/yast2-python-bindings-5.0.1/package/yast2-python-bindings.changes --- old/yast2-python-bindings-4.6.0/package/yast2-python-bindings.changes 2023-03-03 15:58:11.000000000 +0100 +++ new/yast2-python-bindings-5.0.1/package/yast2-python-bindings.changes 2023-09-12 12:56:35.000000000 +0200 @@ -1,4 +1,15 @@ ------------------------------------------------------------------- +Tue Sep 12 10:10:25 UTC 2023 - Samuel Cabrero <scabr...@suse.de> + +- Fix inspect.getargspec() removed in python3.11; (bsc#1215226); +- 5.0.1 + +------------------------------------------------------------------- +Wed Aug 30 20:16:10 UTC 2023 - Josef Reidinger <jreidin...@suse.cz> + +- 5.0.0 (#bsc1185510) + +------------------------------------------------------------------- Fri Mar 03 14:44:07 UTC 2023 - Ladislav Slezák <lsle...@suse.cz> - Bump version to 4.6.0 (bsc#1208913) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-python-bindings-4.6.0/package/yast2-python-bindings.spec new/yast2-python-bindings-5.0.1/package/yast2-python-bindings.spec --- old/yast2-python-bindings-4.6.0/package/yast2-python-bindings.spec 2023-03-03 15:58:11.000000000 +0100 +++ new/yast2-python-bindings-5.0.1/package/yast2-python-bindings.spec 2023-09-12 12:56:35.000000000 +0200 @@ -23,7 +23,7 @@ %bcond_with python2 %endif Name: yast2-python-bindings -Version: 4.6.0 +Version: 5.0.1 Release: 0 Summary: Python bindings for the YaST platform License: GPL-2.0-only diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-python-bindings-4.6.0/src/YCPDeclarations.py new/yast2-python-bindings-5.0.1/src/YCPDeclarations.py --- old/yast2-python-bindings-4.6.0/src/YCPDeclarations.py 2023-03-03 15:58:11.000000000 +0100 +++ new/yast2-python-bindings-5.0.1/src/YCPDeclarations.py 2023-09-12 12:56:35.000000000 +0200 @@ -98,7 +98,7 @@ def _checkNumParams(self, func, numTypes): """ Check if number of parameters equals to number of defined types """ - args = len(inspect.getargspec(func)[0]) + args = len(inspect.getfullargspec(func)[0]) if args != numTypes: raise Exception("Number of declared types does not match number of arguments.")