Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-k5test for openSUSE:Factory checked in at 2022-11-10 14:21:25 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-k5test (Old) and /work/SRC/openSUSE:Factory/.python-k5test.new.1597 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-k5test" Thu Nov 10 14:21:25 2022 rev:3 rq:1034616 version:0.10.3 Changes: -------- --- /work/SRC/openSUSE:Factory/python-k5test/python-k5test.changes 2022-09-19 16:03:35.626191557 +0200 +++ /work/SRC/openSUSE:Factory/.python-k5test.new.1597/python-k5test.changes 2022-11-10 14:21:46.350175822 +0100 @@ -1,0 +2,10 @@ +Tue Nov 8 17:14:41 UTC 2022 - Yogalakshmi Arunachalam <yarunacha...@suse.com> + +- Update to v0.10.3 + * Remove no longer valid reference by @stanislavlevin in #23 +- Update to v0.10.2 + * Remove redundant wheel dep from pyproject.toml by @mgorny in #19 + * Use built-in shutil.which() instead of which(1) tool by @mgorny in #20 + * Update CI to use new action versions by @jborean93 in #21 + +------------------------------------------------------------------- Old: ---- k5test-0.10.1.tar.gz New: ---- k5test-0.10.3.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-k5test.spec ++++++ --- /var/tmp/diff_new_pack.o7sO3B/_old 2022-11-10 14:21:46.726177950 +0100 +++ /var/tmp/diff_new_pack.o7sO3B/_new 2022-11-10 14:21:46.734177995 +0100 @@ -18,7 +18,7 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-k5test -Version: 0.10.1 +Version: 0.10.3 Release: 0 Summary: A library for testing Python applications in krb5 environments License: MIT ++++++ k5test-0.10.1.tar.gz -> k5test-0.10.3.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/k5test-0.10.1/PKG-INFO new/k5test-0.10.3/PKG-INFO --- old/k5test-0.10.1/PKG-INFO 2021-10-11 03:34:38.656677700 +0200 +++ new/k5test-0.10.3/PKG-INFO 2022-11-01 01:54:55.512789200 +0100 @@ -1,13 +1,12 @@ Metadata-Version: 2.1 Name: k5test -Version: 0.10.1 +Version: 0.10.3 Summary: A library for testing Python applications in self-contained Kerberos 5 environments Home-page: https://github.com/pythongssapi/k5test Author: The Python GSSAPI Team Author-email: sr...@redhat.com License: LICENSE.txt Keywords: gssapi,security -Platform: UNKNOWN Classifier: Development Status :: 4 - Beta Classifier: Programming Language :: Python Classifier: Programming Language :: Python :: 3 @@ -16,6 +15,7 @@ Classifier: Programming Language :: Python :: 3.8 Classifier: Programming Language :: Python :: 3.9 Classifier: Programming Language :: Python :: 3.10 +Classifier: Programming Language :: Python :: 3.11 Classifier: Intended Audience :: Developers Classifier: License :: OSI Approved :: ISC License (ISCL) Classifier: License :: OSI Approved :: MIT License @@ -60,5 +60,3 @@ version. The `k5test.krb_plugin_test(plugin_type, plugin_name)` decorator allows you to skip tests for installations that don't have a particular plugin installed. - - diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/k5test-0.10.1/k5test/realm.py new/k5test-0.10.3/k5test/realm.py --- old/k5test-0.10.1/k5test/realm.py 2021-10-11 03:34:34.000000000 +0200 +++ new/k5test-0.10.3/k5test/realm.py 2022-11-01 01:54:46.000000000 +0100 @@ -68,16 +68,13 @@ def _discover_path(name, default, paths): - stderr_out = subprocess.DEVNULL - try: - path = subprocess.check_output(["which", name], stderr=stderr_out).strip() - path = path.decode(sys.getfilesystemencoding() or sys.getdefaultencoding()) + path = shutil.which(name) + if path is not None: _LOG.debug(f"Using discovered path for {name} ({path})") - return path - except subprocess.CalledProcessError as e: + else: path = paths.get(name, default) - _LOG.debug(f"Using default path for {name} ({path}): {e}") - return path + _LOG.debug(f"Using default path for {name} ({path})") + return path class K5Realm(metaclass=abc.ABCMeta): diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/k5test-0.10.1/k5test.egg-info/PKG-INFO new/k5test-0.10.3/k5test.egg-info/PKG-INFO --- old/k5test-0.10.1/k5test.egg-info/PKG-INFO 2021-10-11 03:34:38.000000000 +0200 +++ new/k5test-0.10.3/k5test.egg-info/PKG-INFO 2022-11-01 01:54:55.000000000 +0100 @@ -1,13 +1,12 @@ Metadata-Version: 2.1 Name: k5test -Version: 0.10.1 +Version: 0.10.3 Summary: A library for testing Python applications in self-contained Kerberos 5 environments Home-page: https://github.com/pythongssapi/k5test Author: The Python GSSAPI Team Author-email: sr...@redhat.com License: LICENSE.txt Keywords: gssapi,security -Platform: UNKNOWN Classifier: Development Status :: 4 - Beta Classifier: Programming Language :: Python Classifier: Programming Language :: Python :: 3 @@ -16,6 +15,7 @@ Classifier: Programming Language :: Python :: 3.8 Classifier: Programming Language :: Python :: 3.9 Classifier: Programming Language :: Python :: 3.10 +Classifier: Programming Language :: Python :: 3.11 Classifier: Intended Audience :: Developers Classifier: License :: OSI Approved :: ISC License (ISCL) Classifier: License :: OSI Approved :: MIT License @@ -60,5 +60,3 @@ version. The `k5test.krb_plugin_test(plugin_type, plugin_name)` decorator allows you to skip tests for installations that don't have a particular plugin installed. - - diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/k5test-0.10.1/pyproject.toml new/k5test-0.10.3/pyproject.toml --- old/k5test-0.10.1/pyproject.toml 2021-10-11 03:34:34.000000000 +0200 +++ new/k5test-0.10.3/pyproject.toml 2022-11-01 01:54:46.000000000 +0100 @@ -1,5 +1,5 @@ [build-system] -requires = ["setuptools >= 40.6.0", "wheel"] +requires = ["setuptools >= 40.6.0"] build-backend = "setuptools.build_meta" [tool.isort] diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/k5test-0.10.1/setup.py new/k5test-0.10.3/setup.py --- old/k5test-0.10.1/setup.py 2021-10-11 03:34:34.000000000 +0200 +++ new/k5test-0.10.3/setup.py 2022-11-01 01:54:46.000000000 +0100 @@ -3,7 +3,7 @@ setup( name="k5test", - version="0.10.1", + version="0.10.3", author="The Python GSSAPI Team", author_email="sr...@redhat.com", packages=["k5test"], @@ -22,6 +22,7 @@ "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", "Intended Audience :: Developers", "License :: OSI Approved :: ISC License (ISCL)", "License :: OSI Approved :: MIT License",