You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am publishing a python package, licensed with a MIT license, that depends on docutils == 0.17.1. According to its license page docutils is licensed as Public Domain, Python Software, BSD2 and GPL but it seems that licenscecheck fails to correctly parse the GPL and BSD2.
WARN: 'GNU GENERAL PUBLIC LICENSE (GPL)' License not identified so falling back to NO_LICENSE
┌──────┬────────────────────┬──────────────────────────────┐
│Compat│ Package │ License │
├──────┼────────────────────┼──────────────────────────────┤
│ ❌ │docutils │Public Domain, Python Software│
└──────┴────────────────────┴──────────────────────────────┘
Expected Output:
WARN: 'GNU GENERAL PUBLIC LICENSE (GPL)' License not identified so falling back to NO_LICENSE
┌──────┬────────────────────┬────────────────────────────────────────┐
│Compat│ Package │ License │
├──────┼────────────────────┼────────────────────────────────────────┤
│ ❌ │docutils │Public Domain, Python Software, GPL, BSD│
└──────┴────────────────────┴────────────────────────────────────────┘
The text was updated successfully, but these errors were encountered:
NicolaDonelli
changed the title
licensecheck fails to identify all licenses of docutils package
Question: licensecheck fails to identify all licenses of docutils package
Oct 19, 2022
NicolaDonelli
changed the title
Question: licensecheck fails to identify all licenses of docutils package
Bug: licensecheck fails to identify all licenses of docutils package
Oct 19, 2022
P.s. Sorry for having mistakenly labelled the issue as a question: I realised after publishing it that it could probably be better categorised as a bug but it seems I cannot change the label anymore...
Hi thanks for opening the issue. What is happening is that the terminal reporter/ formatter is cutting off the licenses to fit the table. Using --formatter markdown yields
I am publishing a python package, licensed with a MIT license, that depends on docutils == 0.17.1. According to its license page docutils is licensed as Public Domain, Python Software, BSD2 and GPL but it seems that licenscecheck fails to correctly parse the GPL and BSD2.
Reproducible example
OS: MacOS Monterey 12.6
Requirements file: requirements.txt
Project License: MIT
Command:
python -m licensecheck --using 'requirements:requirements.txt'
Output:
Expected Output:
The text was updated successfully, but these errors were encountered: