File tree 3 files changed +7
-3
lines changed
3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 3
3
All major and minor version changes will be documented in this file. Details of
4
4
patch-level version changes can be found in [ commit messages] ( ../../commits/master ) .
5
5
6
- ## 2021.5.1 - 2021/10/18
6
+ ## 2022 - 2022/01/14
7
+
8
+ - Fix https://github.com/FHPythonUtils/LicenseCheck/issues/18
9
+
10
+ ## 2021.5.2 - 2021/10/18
7
11
8
12
- Compatible with pip 21.3
9
13
- Code quality improvements
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ def getPackagesFromLocal(requirements: list[str]) -> list[PackageInfo]:
42
42
pkgInfo .append (
43
43
{
44
44
"name" : pkg .canonical_name ,
45
- "version" : pkg .version ,
45
+ "version" : str ( pkg .version ) ,
46
46
"namever" : str (pkg ),
47
47
"home_page" : homePage ,
48
48
"author" : author ,
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " licensecheck"
3
- version = " 2021.5.2 "
3
+ version = " 2022 "
4
4
license = " mit"
5
5
description = " Output the licenses used by dependencies and check if these are compatible with the project license"
6
6
authors = [" FredHappyface" ]
You can’t perform that action at this time.
0 commit comments