Skip to content

Commit bfb13fa

Browse files
committed
Drop support for Python 3.8
1 parent ad7724b commit bfb13fa

4 files changed

Lines changed: 8 additions & 3 deletions

File tree

.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.8", "3.9", "3.10", "3.11", "3.12", "pypy-3.9"]
37+
python-version: ["3.9", "3.10", "3.11", "3.12", "pypy-3.9"]
3838
optional-deps: [true]
3939
with-libs: [true]
4040
include:

README.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,11 @@ To ensure that you get the correct ``zstandard`` version, you can specify the ``
184184
Changelog
185185
---------
186186

187+
development version
188+
~~~~~~~~~~~~~~~~~~~
189+
190+
* Dropped support for Python 3.8
191+
187192
v2.0.2 (2024-06-12)
188193
~~~~~~~~~~~~~~~~~~~
189194
* #161: Fix a bug that was triggered when reading large compressed files with

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ classifiers = [
1616
"License :: OSI Approved :: MIT License",
1717
"Programming Language :: Python :: 3"
1818
]
19-
requires-python = ">=3.8"
19+
requires-python = ">=3.9"
2020
dynamic = ["version"]
2121
dependencies = [
2222
'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,py38,py39,py310,py311,py312,pypy3
2+
envlist = black,flake8,mypy,py39,py310,py311,py312,pypy3
33
isolated_build = True
44

55
[testenv]

0 commit comments

Comments
 (0)