Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ Changelog
Next release
--------------

- Add support for parsing pip cache directories. ScanCode now detects
``.cache/pip/wheels/`` directories and parses ``origin.json`` files
to collect cached Python packages with their name, version, and
SHA-256 hashes.
https://github.com/aboutcode-org/scancode-toolkit/issues/4220

- Fix the optional ``licenses`` extra dependency typo to install
``licensedcode-data``.
https://github.com/aboutcode-org/scancode-toolkit/pull/5056
Expand Down
1 change: 1 addition & 0 deletions pyproject-scancode-toolkit-mini.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ dependencies = [
"click >= 6.7, !=7.0, !=8.1.8;python_version<'3.10'",
"click >= 8.2.0;python_version>='3.10'",
"colorama >= 0.3.9",
"commoncode >= 32.4.2",
"cyseq >= 0.1.2",
"container-inspector >= 31.0.0",
"debian-inspector >= 31.1.0",
Expand Down
1 change: 1 addition & 0 deletions pyproject-scancode-toolkit.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ dependencies = [
"click >= 6.7, !=7.0, !=8.1.8;python_version<'3.10'",
"click >= 8.2.0;python_version>='3.10'",
"colorama >= 0.3.9",
"commoncode >= 32.4.2",
"cyseq >= 0.1.2",
"container-inspector >= 31.0.0",
"debian-inspector >= 31.1.0",
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ dependencies = [
"click >= 6.7, !=7.0, !=8.1.8;python_version<'3.10'",
"click >= 8.2.0;python_version>='3.10'",
"colorama >= 0.3.9",
"commoncode >= 32.4.2",
"cyseq >= 0.1.2",
"container-inspector >= 31.0.0",
"debian-inspector >= 31.1.0",
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ cffi==2.0.0
chardet==5.2.0
charset-normalizer==3.4.4
click==8.3.1
commoncode==32.5.2
colorama==0.4.6
construct==2.10.70
container-inspector==33.0.0
Expand Down
1 change: 1 addition & 0 deletions src/packagedcode/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,7 @@

pypi.PipfileHandler,
pypi.PipfileLockHandler,
pypi.PipCacheOriginHandler,
pypi.PipRequirementsFileHandler,
pypi.PypiEggHandler,
# pypi.PypiSdistArchiveHandler,
Expand Down
Loading
Loading