Skip to content

Commit 50d65b0

Browse files
committed
Drop support for Python 3.9 which reaches end of life soon
1 parent 6983c84 commit 50d65b0

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
test:
77
strategy:
88
matrix:
9-
python: ['3.9', '3.10', '3.11', '3.12', '3.13']
9+
python: ['3.10', '3.11', '3.12', '3.13']
1010
runs-on: ubuntu-latest
1111
steps:
1212
- uses: actions/checkout@v5

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,14 @@ classifiers = [
1313
"Operating System :: POSIX",
1414
"Programming Language :: Python",
1515
"Programming Language :: Python :: 3 :: Only",
16-
"Programming Language :: Python :: 3.9",
1716
"Programming Language :: Python :: 3.10",
1817
"Programming Language :: Python :: 3.11",
1918
"Programming Language :: Python :: 3.12",
2019
"Programming Language :: Python :: 3.13",
2120
"Topic :: Security",
2221
"Topic :: Software Development :: Libraries :: Python Modules",
2322
]
24-
requires-python = ">=3.9"
23+
requires-python = ">=3.10"
2524
dependencies = ["cryptography>=2.0", "jeepney>=0.6"]
2625

2726
[project.readme]

0 commit comments

Comments
 (0)