Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-pip-licenses for openSUSE:Factory checked in at 2022-12-04 14:58:52 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-pip-licenses (Old) and /work/SRC/openSUSE:Factory/.python-pip-licenses.new.1835 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-pip-licenses" Sun Dec 4 14:58:52 2022 rev:8 rq:1039909 version:4.0.1 Changes: -------- --- /work/SRC/openSUSE:Factory/python-pip-licenses/python-pip-licenses.changes 2022-11-06 12:42:38.593539762 +0100 +++ /work/SRC/openSUSE:Factory/.python-pip-licenses.new.1835/python-pip-licenses.changes 2022-12-04 14:59:21.924619759 +0100 @@ -1,0 +2,6 @@ +Sat Dec 3 19:58:46 UTC 2022 - Yogalakshmi Arunachalam <yarunacha...@suse.com> + +- Update to version 4.0.1 + * Fix âpip-licensesâ is missing in output of pip-licenses --with-system option + +------------------------------------------------------------------- Old: ---- pip-licenses-4.0.0.tar.gz New: ---- pip-licenses-4.0.1.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-pip-licenses.spec ++++++ --- /var/tmp/diff_new_pack.XBhLmI/_old 2022-12-04 14:59:22.480622962 +0100 +++ /var/tmp/diff_new_pack.XBhLmI/_new 2022-12-04 14:59:22.484622985 +0100 @@ -18,7 +18,7 @@ %define skip_python2 1 Name: python-pip-licenses -Version: 4.0.0 +Version: 4.0.1 Release: 0 Summary: Python packages license list License: MIT ++++++ pip-licenses-4.0.0.tar.gz -> pip-licenses-4.0.1.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pip-licenses-4.0.0/CHANGELOG.md new/pip-licenses-4.0.1/CHANGELOG.md --- old/pip-licenses-4.0.0/CHANGELOG.md 2022-11-06 04:15:10.000000000 +0100 +++ new/pip-licenses-4.0.1/CHANGELOG.md 2022-11-14 14:12:38.000000000 +0100 @@ -1,5 +1,9 @@ ## CHANGELOG +### 4.0.1 + +* Fix "pip-licenses" is missing in output of `pip-licenses --with-system` option + ### 4.0.0 * Support for Python 3.11 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pip-licenses-4.0.0/PKG-INFO new/pip-licenses-4.0.1/PKG-INFO --- old/pip-licenses-4.0.0/PKG-INFO 2022-11-06 04:22:26.290000000 +0100 +++ new/pip-licenses-4.0.1/PKG-INFO 2022-11-14 14:20:02.280000000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: pip-licenses -Version: 4.0.0 +Version: 4.0.1 Summary: Dump the software license list of Python packages installed with pip. Home-page: https://github.com/raimon49/pip-licenses Author: raimon @@ -764,6 +764,14 @@ CHANGELOG --------- +.. _401: + +4.0.1 +~~~~~ + +- Fix "pip-licenses" is missing in output of + ``pip-licenses --with-system`` option + .. _400: 4.0.0 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pip-licenses-4.0.0/pip_licenses.egg-info/PKG-INFO new/pip-licenses-4.0.1/pip_licenses.egg-info/PKG-INFO --- old/pip-licenses-4.0.0/pip_licenses.egg-info/PKG-INFO 2022-11-06 04:22:26.000000000 +0100 +++ new/pip-licenses-4.0.1/pip_licenses.egg-info/PKG-INFO 2022-11-14 14:20:02.000000000 +0100 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: pip-licenses -Version: 4.0.0 +Version: 4.0.1 Summary: Dump the software license list of Python packages installed with pip. Home-page: https://github.com/raimon49/pip-licenses Author: raimon @@ -764,6 +764,14 @@ CHANGELOG --------- +.. _401: + +4.0.1 +~~~~~ + +- Fix "pip-licenses" is missing in output of + ``pip-licenses --with-system`` option + .. _400: 4.0.0 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/pip-licenses-4.0.0/piplicenses.py new/pip-licenses-4.0.1/piplicenses.py --- old/pip-licenses-4.0.0/piplicenses.py 2022-11-06 04:15:45.000000000 +0100 +++ new/pip-licenses-4.0.1/piplicenses.py 2022-11-14 14:11:18.000000000 +0100 @@ -45,7 +45,7 @@ open = open # allow monkey patching __pkgname__ = 'pip-licenses' -__version__ = '4.0.0' +__version__ = '4.0.1' __author__ = 'raimon' __license__ = 'MIT' __summary__ = ('Dump the software license list of ' @@ -184,10 +184,7 @@ return pkg_info - pkgs = filter( - lambda pkg: pkg.metadata["name"] != "pip-licenses", - importlib_metadata.distributions() - ) + pkgs = importlib_metadata.distributions() ignore_pkgs_as_lower = [pkg.lower() for pkg in args.ignore_packages] pkgs_as_lower = [pkg.lower() for pkg in args.packages]