Skip to content
Merged
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: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ on:
env:
PYTHON_VER: "3.11" # Python to run test/cibuildwheel
CIBW_BUILD: >
cp310-* cp311-* cp312-* cp313-* cp314-*
cp310-* cp311-* cp312-* cp313-* cp313t-* cp314-* cp314t-*
pp310-* pp311-*
CIBW_ENABLE: pypy pypy-eol
CIBW_ENABLE: cpython-freethreading pypy pypy-eol
CIBW_TEST_COMMAND: python -m unittest discover {project}/tests

jobs:
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ All notable changes to this project will be documented in this file.
## 0.18.0 (October 5, 2025)

- Support for Python 3.14
- Build free-threaded wheels for CPython 3.13 and 3.14, even if the feature is not supported
- 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
Expand Down
2 changes: 2 additions & 0 deletions src/bin_ext/pyzstd.c
Original file line number Diff line number Diff line change
Expand Up @@ -579,6 +579,8 @@ _zstd_free(void *module)
#ifdef USE_MULTI_PHASE_INIT
static PyModuleDef_Slot _zstd_slots[] = {
{Py_mod_exec, _zstd_exec},
// note: we do NOT support multiple interpreters
// note: we do NOT support free-threading
{0}
};
#endif
Expand Down