Skip to content

Commit ebba668

Browse files
committed
2021.5.1
1 parent 393fdf8 commit ebba668

File tree

3 files changed

+13
-9
lines changed

3 files changed

+13
-9
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
All major and minor version changes will be documented in this file. Details of
33
patch-level version changes can be found in [commit messages](../../commits/master).
44

5-
## 2021.5 - 2021/10/18
5+
## 2021.5.1 - 2021/10/18
66

77
- Compatible with pip 21.3
88
- Code quality improvements

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,8 @@ Head to https://pypi.org/project/licensecheck/ for more info
290290
## Language information
291291

292292
### Built for
293-
This program has been written for Python versions 3.7 - 3.10 and has been tested with both 3.7 and 3.10
293+
This program has been written for Python versions 3.7 - 3.10 and has been tested with both 3.7 and
294+
3.10
294295

295296
## Install Python on Windows
296297

@@ -335,10 +336,10 @@ version.
335336
### Windows
336337

337338
- Module
338-
`python -3.x -m [module]` or `[module]` (if module installs a script)
339+
`py -3.x -m [module]` or `[module]` (if module installs a script)
339340

340341
- File
341-
`python -3.x [file]` or `./[file]`
342+
`py -3.x [file]` or `./[file]`
342343

343344
### Linux/ MacOS
344345

pyproject.toml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "licensecheck"
3-
version = "2021.5"
3+
version = "2021.5.1"
44
license = "mit"
55
description = "Output the licenses used by dependencies and check if these are compatible with the project license"
66
authors = ["FredHappyface"]
@@ -38,7 +38,6 @@ fhconfparser = "<2023,>=2021.1.1"
3838
[tool.poetry.extras]
3939
full = ["metprint"]
4040

41-
4241
[tool.black]
4342
line-length = 100
4443
target-version = ["py37"]
@@ -50,12 +49,11 @@ indent = "Tab"
5049
[tool.pydocstyle]
5150
convention = "google"
5251
ignore = "D205,D415"
52+
5353
[build-system]
5454
requires = ["poetry-core"]
5555
build-backend = "poetry.core.masonry.api"
5656

57-
# Pylint
58-
[tool.pylint]
5957
[tool.pylint.basic]
6058
argument-naming-style = "camelCase"
6159
attr-naming-style = "camelCase"
@@ -71,7 +69,12 @@ ignore-patterns = "test_.*?py"
7169

7270
[tool.pylint.messages_control]
7371
enable = ["F", "E", "W", "R", "C"]
74-
disable = ["pointless-string-statement", "superfluous-parens", "bad-continuation", "python3"]
72+
disable = [
73+
"pointless-string-statement",
74+
"superfluous-parens",
75+
"bad-continuation",
76+
"python3"
77+
]
7578

7679
[tool.licensecheck]
7780
# using = "requirements:requirements.txt;requirements_optional.txt"

0 commit comments

Comments
 (0)