Skip to content

Commit

Permalink
2022. fix #18
Browse files Browse the repository at this point in the history
  • Loading branch information
FredHappyface committed Jan 14, 2022
1 parent 54063d1 commit e55403f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@
All major and minor version changes will be documented in this file. Details of
patch-level version changes can be found in [commit messages](../../commits/master).

## 2021.5.1 - 2021/10/18
## 2022 - 2022/01/14

- Fix https://github.com/FHPythonUtils/LicenseCheck/issues/18

## 2021.5.2 - 2021/10/18

- Compatible with pip 21.3
- Code quality improvements
Expand Down
2 changes: 1 addition & 1 deletion licensecheck/packageinfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def getPackagesFromLocal(requirements: list[str]) -> list[PackageInfo]:
pkgInfo.append(
{
"name": pkg.canonical_name,
"version": pkg.version,
"version": str(pkg.version),
"namever": str(pkg),
"home_page": homePage,
"author": author,
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "licensecheck"
version = "2021.5.2"
version = "2022"
license = "mit"
description = "Output the licenses used by dependencies and check if these are compatible with the project license"
authors = ["FredHappyface"]
Expand Down

0 comments on commit e55403f

Please sign in to comment.