File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 33All major and minor version changes will be documented in this file. Details of
44patch-level version changes can be found in [ commit messages] ( ../../commits/master ) .
55
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
711
812- Compatible with pip 21.3
913- Code quality improvements
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ def getPackagesFromLocal(requirements: list[str]) -> list[PackageInfo]:
4242 pkgInfo .append (
4343 {
4444 "name" : pkg .canonical_name ,
45- "version" : pkg .version ,
45+ "version" : str ( pkg .version ) ,
4646 "namever" : str (pkg ),
4747 "home_page" : homePage ,
4848 "author" : author ,
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " licensecheck"
3- version = " 2021.5.2 "
3+ version = " 2022 "
44license = " mit"
55description = " Output the licenses used by dependencies and check if these are compatible with the project license"
66authors = [" FredHappyface" ]
You can’t perform that action at this time.
0 commit comments