Skip to content

Commit 536ff4c

Browse files
authored
Merge pull request #191 from jschlyter/deprecate_python_eol
Remove support for Python 3.9 (EOL 2025-10-31)
2 parents 181a32a + 313f41d commit 536ff4c

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/test.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ jobs:
2323
strategy:
2424
matrix:
2525
python-version:
26-
- "3.9"
2726
- "3.10"
2827
- "3.11"
2928
- "3.12"

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ readme = "README.md"
1313
packages = [
1414
{ include = "cryptojwt", from = "src" }
1515
]
16-
requires-python = ">=3.9,<4.0"
16+
requires-python = ">=3.10,<4.0"
1717
dependencies = [
1818
"cryptography>=3.4.6",
1919
"requests>=2.25.1"
@@ -74,7 +74,7 @@ select = [
7474
# isort
7575
"I",
7676
]
77-
ignore = ["E501", "I001", "SIM102", "UP006", "UP035"]
77+
ignore = ["E501", "I001", "SIM102", "UP006", "UP035", "UP045", "UP007"]
7878
exclude = ["examples/*"]
7979

8080
[tool.ruff.lint.isort]

0 commit comments

Comments
 (0)