Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update fickling version; removes Torch dependency #419

Merged
merged 1 commit into from
Mar 27, 2024
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
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ test = [
"django>=4,<6",
"numpy~=1.26.0",
"flask_wtf~=1.2.0",
"fickling~=0.1.0",
"fickling~=0.1.0,>=0.1.3",
Copy link
Contributor

Choose a reason for hiding this comment

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

any reason not to just make it >=0.1.3"?

Copy link
Member Author

Choose a reason for hiding this comment

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

I think it's safer to keep it explicitly pinned to a particular minor version for now.

]
complexity = [
"radon==6.0.*",
Expand Down
6 changes: 3 additions & 3 deletions src/codemodder/dependency.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,10 @@ def __hash__(self):
)

Fickling = Dependency(
Requirement("fickling~=0.1.0"),
Requirement("fickling~=0.1.0,>=0.1.3"),
hashes=[
"a5bb5982e2c0e86d41fceaf9576929f0e7bfeef53998248f69c885224cf45739",
"1d74a9ef84e56ecd3114563907166bfa65e17e3a00190157c1514fff08e086b4",
"c7ad5885cd97f8c693cf7824fdbcf9d103dbacbce36546e5a031805a7261bb74",
"606b3153ad4b2c0338930d08a739f7f10a560f996e0bd3a4b46544417254b0d0",
],
description="""This package provides analysis of pickled data to help identify potential security vulnerabilities.""",
_license=License(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@
defusedxml==0.7.1
flask-wtf==1.2.0
security==1.2.1
fickling==0.1.3
Loading