Third Party packages eric7

Thu, 31 Aug 2023 15:00:53 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Thu, 31 Aug 2023 15:00:53 +0200
branch
eric7
changeset 10179
c2125fcab4b8
parent 10178
d13545cfafa1
child 10180
3a595df36c9a

Third Party packages
- Upgraded pip-licenses to version 4.3.2.

docs/ThirdParty.md file | annotate | diff | comparison | revisions
docs/changelog.md file | annotate | diff | comparison | revisions
eric7.epj file | annotate | diff | comparison | revisions
src/eric7/PipInterface/piplicenses.py file | annotate | diff | comparison | revisions
--- a/docs/ThirdParty.md	Thu Aug 31 14:51:37 2023 +0200
+++ b/docs/ThirdParty.md	Thu Aug 31 15:00:53 2023 +0200
@@ -7,7 +7,7 @@
 |:------------:|:---------:|:----------------------------|
 | eradicate    |   2.3.0   | MIT License (Expat License) |
 | mccabe       |   0.7.0   | MIT License (Expat License) |
-| pip-licenses |   4.3.1   | MIT License (MIT)           |
+| pip-licenses |   4.3.2   | MIT License (MIT)           |
 | pycodestyle  |   2.11.0  | MIT License (Expat License) |
 | pyflakes     |   3.1.0   | MIT License (MIT)           |
 |              |           |                             |
--- a/docs/changelog.md	Thu Aug 31 14:51:37 2023 +0200
+++ b/docs/changelog.md	Thu Aug 31 15:00:53 2023 +0200
@@ -4,6 +4,7 @@
 - bug fixes
 - Third Party packages
     - Upgraded eradicate to version 2.3.0.
+    - Upgraded pip-licenses to version 4.3.2.
 
 ### Version 23.9
 - bug fixes
--- a/eric7.epj	Thu Aug 31 14:51:37 2023 +0200
+++ b/eric7.epj	Thu Aug 31 15:00:53 2023 +0200
@@ -1444,7 +1444,6 @@
       "src/eric7/PipInterface/PipPackagesWindow.py",
       "src/eric7/PipInterface/PipVulnerabilityChecker.py",
       "src/eric7/PipInterface/__init__.py",
-      "src/eric7/PipInterface/pipdeptree.py",
       "src/eric7/PipInterface/piplicenses.py",
       "src/eric7/PluginManager/PluginDetailsDialog.py",
       "src/eric7/PluginManager/PluginExceptions.py",
--- a/src/eric7/PipInterface/piplicenses.py	Thu Aug 31 14:51:37 2023 +0200
+++ b/src/eric7/PipInterface/piplicenses.py	Thu Aug 31 15:00:53 2023 +0200
@@ -66,7 +66,7 @@
 
 
 __pkgname__ = "pip-licenses"
-__version__ = "4.3.1"
+__version__ = "4.3.2"
 __author__ = "raimon"
 __license__ = "MIT"
 __summary__ = (
@@ -130,9 +130,14 @@
 
     for entry in metadata.get_all("Project-URL", []):
         key, value = entry.split(",", 1)
-        candidates[key.strip()] = value.strip()
+        candidates[key.strip().lower()] = value.strip()
 
-    for priority_key in ["Homepage", "Source", "Changelog", "Bug Tracker"]:
+    for priority_key in [        "homepage",
+        "source",
+        "repository",
+        "changelog",
+        "bug tracker",
+    ]:
         if priority_key in candidates:
             return candidates[priority_key]
 

eric ide

mercurial