Skip to content

Commit 405af1d

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

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
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.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 & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,6 @@ Supported compression formats are:
2828
- xz (``.xz``)
2929
- Zstandard (``.zst``) (optional)
3030

31-
``xopen`` is compatible with Python versions 3.8 and later.
32-
3331

3432
Example usage
3533
-------------
@@ -184,6 +182,11 @@ To ensure that you get the correct ``zstandard`` version, you can specify the ``
184182
Changelog
185183
---------
186184

185+
development version
186+
~~~~~~~~~~~~~~~~~~~
187+
188+
* Dropped support for Python 3.8
189+
187190
v2.0.2 (2024-06-12)
188191
~~~~~~~~~~~~~~~~~~~
189192
* #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)