Skip to content

Commit df5e005

Browse files
committed
drop Python 3.8 support
Signed-off-by: William Woodruff <william@trailofbits.com>
1 parent 95b5a5d commit df5e005

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
uses: trailofbits/.github/.github/workflows/make-lint.yml@v0.1.3
1212
with:
1313
language: "python"
14-
python-version: "3.8"
14+
python-version: "3.9"
1515

1616
all-lints-pass:
1717
if: always()

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:
17-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
17+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1818

1919
steps:
2020
- uses: actions/checkout@v4

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Fickling can be used both as a **python library** and a **CLI**.
2222

2323
## Installation
2424

25-
Fickling has been tested on Python 3.8 through Python 3.13 and has very few dependencies.
25+
Fickling has been tested on Python 3.9 through Python 3.13 and has very few dependencies.
2626
Both the library and command line utility can be installed through pip:
2727

2828
```bash

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ classifiers = [
1818
"Topic :: Utilities",
1919
]
2020
dependencies = ["astunparse ~= 1.6.3", "stdlib_list ~= 0.11.1"]
21-
requires-python = ">=3.8"
21+
requires-python = ">=3.9"
2222

2323
[project.optional-dependencies]
2424
torch = ["torch >= 2.1.0", "torchvision >= 0.16.1"]

0 commit comments

Comments
 (0)