Skip to content

Commit 0660b62

Browse files
committed
2023.4.2
1 parent 9e90eb1 commit 0660b62

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
All major and minor version changes will be documented in this file. Details of
44
patch-level version changes can be found in [commit messages](../../commits/master).
55

6+
## 2023.4.2 - 2023/08/25
7+
8+
- Fixed Bug: handle missing urls for a pypi package https://github.com/FHPythonUtils/LicenseCheck/issues/57. Thank you https://github.com/Azraeht!
9+
610
## 2023.4.1 - 2023/08/20
711

812
- Fixed Bug: https://github.com/FHPythonUtils/LicenseCheck/issues/55

documentation/reference/licensecheck/packageinfo.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Packageinfo
1717

1818
## getModuleSize
1919

20-
[Show source in packageinfo.py:162](../../../licensecheck/packageinfo.py#L162)
20+
[Show source in packageinfo.py:168](../../../licensecheck/packageinfo.py#L168)
2121

2222
Get the size of a given module as an int.
2323

@@ -45,7 +45,7 @@ def getModuleSize(path: Path, name: ucstr) -> int:
4545

4646
## getMyPackageLicense
4747

48-
[Show source in packageinfo.py:145](../../../licensecheck/packageinfo.py#L145)
48+
[Show source in packageinfo.py:151](../../../licensecheck/packageinfo.py#L151)
4949

5050
Get the package license from "setup.cfg", "pyproject.toml" or user input
5151

@@ -68,7 +68,7 @@ def getMyPackageLicense() -> ucstr:
6868

6969
## getMyPackageMetadata
7070

71-
[Show source in packageinfo.py:121](../../../licensecheck/packageinfo.py#L121)
71+
[Show source in packageinfo.py:127](../../../licensecheck/packageinfo.py#L127)
7272

7373
Get the package classifiers and license from "setup.cfg", "pyproject.toml"
7474

@@ -155,7 +155,7 @@ def getPackageInfoPypi(requirement: ucstr) -> PackageInfo:
155155

156156
## getPackages
157157

158-
[Show source in packageinfo.py:99](../../../licensecheck/packageinfo.py#L99)
158+
[Show source in packageinfo.py:105](../../../licensecheck/packageinfo.py#L105)
159159

160160
Get dependency info.
161161

@@ -183,7 +183,7 @@ def getPackages(reqs: set[ucstr]) -> set[PackageInfo]:
183183

184184
## licenseFromClassifierlist
185185

186-
[Show source in packageinfo.py:79](../../../licensecheck/packageinfo.py#L79)
186+
[Show source in packageinfo.py:85](../../../licensecheck/packageinfo.py#L85)
187187

188188
Get license string from a list of project classifiers.
189189

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "licensecheck"
3-
version = "2023.4.1"
3+
version = "2023.4.2"
44
license = "mit"
55
description = "Output the licenses used by dependencies and check if these are compatible with the project license"
66
authors = ["FredHappyface"]

0 commit comments

Comments
 (0)