Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "pypy-3.9"]
# TODO: restore "pypy-3.11" once isal and zlib-ng ship PyPy wheels again
# (pycompression/python-isal#245, pycompression/python-zlib-ng#78).
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
optional-deps: [true]
with-libs: [true]
include:
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -185,8 +185,8 @@ Changelog
development version
~~~~~~~~~~~~~~~~~~~

* Dropped support for Python 3.8
* Started supporting Python 3.13
* Dropped support for Python 3.8 and 3.9
* Started supporting Python 3.13 and 3.14

v2.0.2 (2024-06-12)
~~~~~~~~~~~~~~~~~~~
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3"
]
requires-python = ">=3.9"
requires-python = ">=3.10"
dynamic = ["version"]
dependencies = [
'isal>=1.6.1; platform.machine == "x86_64" or platform.machine == "AMD64" or platform.machine == "aarch64"',
Expand Down
6 changes: 0 additions & 6 deletions src/xopen/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,12 +72,6 @@

try:
import fcntl

# fcntl.F_SETPIPE_SZ will be available in python 3.10.
# https://github.com/python/cpython/pull/21921
# If not available: set it to the correct value for known platforms.
if not hasattr(fcntl, "F_SETPIPE_SZ") and sys.platform == "linux":
setattr(fcntl, "F_SETPIPE_SZ", 1031)
except ImportError:
fcntl = None # type: ignore

Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = black,flake8,mypy,py39,py310,py311,py312,py313,pypy3
envlist = black,flake8,mypy,py310,py311,py312,py313,py314,pypy3
isolated_build = True

[testenv]
Expand Down
Loading