Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version 0.16.2 #21

Merged
merged 2 commits into from
Oct 10, 2024
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
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

All notable changes to this project will be documented in this file.

## Next version (Unreleased)
## 0.16.2 (October 10, 2024)

- Build wheels for Python 3.13
- Deprecate support for Python version before 3.9 and stop building wheels for them
Expand Down
7 changes: 4 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[build-system]
# setuptools 64.0+ support --build-option
requires = ["setuptools>=64.0"]
# setuptools 64+ support --build-option
# setuptools 74+ drops distutils.msvc9compiler required for Python 3.9 under Windows
requires = ["setuptools>=64,<74"]
backend-path = ["build_script"]
build-backend = "pyzstd_pep517"
build-backend = "pyzstd_pep517"
2 changes: 1 addition & 1 deletion src/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
from .zstdfile import *
from .seekable_zstdfile import *

__version__ = '0.16.1'
__version__ = '0.16.2'

__doc__ = '''\
Python bindings to Zstandard (zstd) compression library, the API style is
Expand Down