Skip to content

Commit 1d93ef3

Browse files
committed
Drop support for Python 3.9
1 parent d1931cb commit 1d93ef3

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
strategy:
3535
matrix:
3636
os: [ubuntu-latest]
37-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "pypy-3.9"]
37+
python-version: ["3.10", "3.11", "3.12", "3.13", "pypy-3.10"]
3838
optional-deps: [true]
3939
with-libs: [true]
4040
include:

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ Changelog
185185
development version
186186
~~~~~~~~~~~~~~~~~~~
187187

188-
* Dropped support for Python 3.8
188+
* Dropped support for Python 3.8 and 3.9
189189
* Started supporting Python 3.13
190190

191191
v2.0.2 (2024-06-12)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ classifiers = [
1515
"Development Status :: 5 - Production/Stable",
1616
"Programming Language :: Python :: 3"
1717
]
18-
requires-python = ">=3.9"
18+
requires-python = ">=3.10"
1919
dynamic = ["version"]
2020
dependencies = [
2121
'isal>=1.6.1; platform.machine == "x86_64" or platform.machine == "AMD64" or platform.machine == "aarch64"',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = black,flake8,mypy,py39,py310,py311,py312,py313,pypy3
2+
envlist = black,flake8,mypy,py310,py311,py312,py313,pypy3
33
isolated_build = True
44

55
[testenv]

0 commit comments

Comments
 (0)