diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a1d0204..7aa9166 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,7 +13,7 @@ on: env: PYTHON_VER: "3.11" # Python to run test/cibuildwheel CIBW_BUILD: > - cp39-* cp310-* cp311-* cp312-* cp313-* + cp39-* cp310-* cp311-* cp312-* cp313-* cp314-* pp39-* pp310-* pp311-* CIBW_ENABLE: pypy pypy-eol CIBW_TEST_COMMAND: python -m unittest discover {project}/tests diff --git a/CHANGELOG.md b/CHANGELOG.md index 0525a22..25e8016 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ All notable changes to this project will be documented in this file. ## Unreleased +- Support for Python 3.14 - Deprecate the `read_size` and `write_size` parameters of `ZstdFile` and `SeekableZstdFile` - Deprecate `richmem_compress` and `RichMemZstdCompressor` - Rework documentation to suggest using `compression.zstd` from Python stdlib, and provide a migration guide diff --git a/setup.py b/setup.py index da3c99f..cbdea4f 100644 --- a/setup.py +++ b/setup.py @@ -232,6 +232,7 @@ def do_setup(): "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", ], keywords='zstandard zstd zst compress decompress tar file seekable format', package_dir={'pyzstd': 'src'},