-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This drops references to EOL'd Python versions. Signed-off-by: William Woodruff <[email protected]>
- Loading branch information
Showing
4 changed files
with
11 additions
and
32 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ jobs: | |
uses: trailofbits/.github/.github/workflows/[email protected] | ||
with: | ||
language: "python" | ||
python-version: "3.7" | ||
python-version: "3.8" | ||
|
||
lint-markdown: | ||
uses: trailofbits/.github/.github/workflows/[email protected] | ||
|
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 |
---|---|---|
|
@@ -8,44 +8,23 @@ dynamic = ["version"] | |
description = "A static analyzer and interpreter for Python pickle data" | ||
readme = "README.md" | ||
license = { file = "LICENSE" } | ||
authors = [ | ||
{ name = "Trail of Bits", email = "[email protected]" } | ||
] | ||
authors = [{ name = "Trail of Bits", email = "[email protected]" }] | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"Environment :: Console", | ||
"Intended Audience :: Science/Research", | ||
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)", | ||
"Programming Language :: Python :: 3 :: Only", | ||
"Topic :: Utilities" | ||
] | ||
dependencies = [ | ||
"astunparse ~= 1.6.3" | ||
"Topic :: Utilities", | ||
] | ||
requires-python = ">=3.7" | ||
dependencies = ["astunparse ~= 1.6.3"] | ||
requires-python = ">=3.8" | ||
|
||
[project.optional-dependencies] | ||
lint = [ | ||
"black", | ||
"mypy", | ||
"ruff", | ||
] | ||
test = [ | ||
"pytest", | ||
"pytest-cov", | ||
"coverage[toml]", | ||
] | ||
dev = [ | ||
"build", | ||
"fickling[lint,test]", | ||
"twine", | ||
] | ||
examples = [ | ||
"numpy", | ||
"pytorchfi~=0.4.1", | ||
"torch~=1.9.0", | ||
"torchvision~=0.10.0", | ||
] | ||
lint = ["black", "mypy", "ruff"] | ||
test = ["pytest", "pytest-cov", "coverage[toml]"] | ||
dev = ["build", "fickling[lint,test]", "twine"] | ||
examples = ["numpy", "pytorchfi~=0.4.1", "torch~=1.9.0", "torchvision~=0.10.0"] | ||
|
||
[project.scripts] | ||
"fickling" = "fickling.__main__:main" | ||
|