Skip to content

Commit 1fca2f9

Browse files
Merge pull request #123 from ThomasWaldmann/remove-py39
remove py39 support
2 parents 20af93f + cc5ec55 commit 1fca2f9

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,6 @@ jobs:
3737
- os: ubuntu-24.04
3838
python-version: '3.11'
3939
toxenv: mypy
40-
- os: ubuntu-22.04
41-
python-version: '3.9'
42-
toxenv: py39
4340
- os: ubuntu-22.04
4441
python-version: '3.10'
4542
toxenv: py310

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ classifiers = [
1111
"Operating System :: POSIX",
1212
"Programming Language :: Python",
1313
"Programming Language :: Python :: 3",
14-
"Programming Language :: Python :: 3.9",
1514
"Programming Language :: Python :: 3.10",
1615
"Programming Language :: Python :: 3.11",
1716
"Programming Language :: Python :: 3.12",
@@ -22,7 +21,7 @@ classifiers = [
2221
]
2322
license = "BSD-3-Clause"
2423
license-files = ["LICENSE.rst"]
25-
requires-python = ">=3.9"
24+
requires-python = ">=3.10"
2625
dependencies = [
2726
"requests >= 2.25.1",
2827
]

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# tox configuration - if you change anything here, run this to verify: tox --recreate
22

33
[tox]
4-
envlist = py{39,310,311,312,313,314},flake8,mypy
4+
envlist = py{310,311,312,313,314},flake8,mypy
55

66
[testenv]
77
deps = pytest

0 commit comments

Comments
 (0)