Skip to content
Merged
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
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
attrs==23.2.0
banal==1.0.6
beautifulsoup4==4.12.3
beautifulsoup4==4.13.3
binaryornot==0.4.4
beartype==0.17.2
boolean.py==4.0
Expand All @@ -10,7 +10,7 @@ chardet==5.0.0
charset-normalizer==2.1.0
click==8.1.7
colorama==0.4.5
commoncode==32.0.0
commoncode==32.2.0
construct==2.10.68
container-inspector==31.1.0
cryptography==42.0.5
Expand Down
4 changes: 2 additions & 2 deletions setup-mini.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,12 @@ python_requires = >=3.9
install_requires =
attrs >= 18.1,!=20.1.0;python_version<'3.11'
attrs >= 22.1.0;python_version>='3.11'
Beautifulsoup4 >= 4.0.0
Beautifulsoup4[chardet] >= 4.13.0
boolean.py >= 4.0
chardet >= 3.0.0
click >= 6.7, !=7.0, !=8.1.8
colorama >= 0.3.9
commoncode >= 32.0.0
commoncode >= 32.2.0
container-inspector >= 31.0.0
debian-inspector >= 31.1.0
dparse2 >= 0.7.0
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,12 @@ python_requires = >=3.9
install_requires =
attrs >= 18.1,!=20.1.0;python_version<'3.11'
attrs >= 22.1.0;python_version>='3.11'
Beautifulsoup4 >= 4.0.0
Beautifulsoup4[chardet] >= 4.13.0
boolean.py >= 4.0
chardet >= 3.0.0
click >= 6.7, !=7.0, !=8.1.8
colorama >= 0.3.9
commoncode >= 32.0.0
commoncode >= 32.2.0
container-inspector >= 31.0.0
debian-inspector >= 31.1.0
dparse2 >= 0.7.0
Expand Down
6 changes: 3 additions & 3 deletions tests/scancode/test_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ def test_get_file_info_include_size(self):
info = api.get_file_info(test_dir)
expected = [
('size', 0),
('sha1', None),
('md5', None),
('sha256', None),
('sha1', 0),
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That's a big change. What happened?

('md5', 0),
('sha256', 0),
('mime_type', 'inode/x-empty'),
('file_type', 'empty'),
('programming_language', None),
Expand Down
Loading