-
Notifications
You must be signed in to change notification settings - Fork 461
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1070 from mandiant/python310
Update to Python 3.10 as minimum
- Loading branch information
Showing
10 changed files
with
20 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,6 +16,7 @@ lib/ | |
|
||
# Pyenv file | ||
.python-version | ||
.venv | ||
|
||
# Test executables | ||
bin/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ authors = [ | |
{name = "Willi Ballenthin", email = "[email protected]"}, | ||
{name = "Moritz Raabe", email = "[email protected]"}, | ||
] | ||
requires-python=">=3.8" | ||
requires-python=">=3.10" | ||
keywords = ["floss", "malware", "analysis", "obfuscation", "strings", "FLARE"] | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
|
@@ -89,9 +89,7 @@ dependencies = [ | |
# typically due to dropping support for python releases | ||
# we still support. | ||
|
||
# TODO(williballenthin): networkx 3.2 doesn't support python 3.8 while capa does. | ||
# https://github.com/mandiant/capa/issues/1966 | ||
"networkx>=3,<3.2", | ||
"networkx>=3", | ||
] | ||
dynamic = ["version", "readme"] | ||
|
||
|
@@ -108,16 +106,16 @@ packages = ["floss", "floss.sigs"] | |
# These dependencies are not used in production environments | ||
# and should not conflict with other libraries/tooling. | ||
dev = [ | ||
"pre-commit==3.5.0", | ||
"pre-commit==4.0.1", | ||
"pyyaml==6.0.1", | ||
"pytest==8.3.3", | ||
"pytest-sugar==1.0.0", | ||
"pytest-instafail==0.5.0", | ||
"pytest-cov==5.0.0", | ||
"pycodestyle==2.12.1", | ||
"black==24.8.0", | ||
"black==24.10.0", | ||
"isort==5.13.2", | ||
"mypy==1.10.0", | ||
"mypy==1.13.0", | ||
# type stubs for mypy | ||
"types-PyYAML==6.0.10", | ||
"types-tabulate==0.9.0.20240106", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters