Skip to content

Commit d35e50d

Browse files
Remove python 3.9 and 3.10 support
1 parent 07f5b74 commit d35e50d

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

.github/workflows/build-release.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@ jobs:
1212
fail-fast: false
1313
matrix:
1414
include:
15-
- {name: '3.9', python: '3.9', tox: py39}
16-
- {name: '3.10', python: '3.10', tox: py310}
1715
- {name: '3.11', python: '3.11', tox: py311}
1816
- {name: '3.12', python: '3.12', tox: py312}
1917
steps:

pyproject.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,10 @@ classifiers = [
1818
"Topic :: Scientific/Engineering",
1919
"License :: OSI Approved :: MIT License",
2020
"Programming Language :: Python :: 3 :: Only",
21-
"Programming Language :: Python :: 3.9",
22-
"Programming Language :: Python :: 3.10",
2321
"Programming Language :: Python :: 3.11",
2422
"Programming Language :: Python :: 3.12",
2523
]
26-
requires-python = ">=3.9"
24+
requires-python = ">=3.11"
2725
dependencies = [
2826
"packaging>=25.0",
2927
"requests>=2.32.5,<3.0.0",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = lint,py39,py310,py311,py312
2+
envlist = lint,py311,py312
33
skip_missing_interpreters = True
44

55
[testenv]

0 commit comments

Comments
 (0)