Skip to content

Commit

Permalink
Merge pull request #157 from effigies/enh/free-threading
Browse files Browse the repository at this point in the history
Add Python 3.13t (free-threaded) builds
  • Loading branch information
pauldmccarthy authored Nov 18, 2024
2 parents b20e204 + adfb1de commit 60f38a9
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
3 changes: 3 additions & 0 deletions .ci/build_wheels.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ export CIBW_SKIP="pp*"
#
export CIBW_TEST_SKIP="*i686* *aarch64* cp312-win* cp313-win*"

# Enable free-threaded builds for Python versions (3.13t) that support it
export CIBW_FREE_THREADED_SUPPORT=1

# Pytest makes it *very* awkward to run tests
# from an installed package, and still find/
# interpret a conftest.py file correctly.
Expand Down
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
## 1.9.2 (November 18th 2024)


* Adjustment to exception handling (#158).
* Enable builds for free-threading Python versions (#157).
* Adjustment to exception handling (#159).


## 1.9.1 (November 15th 2024)
Expand Down
2 changes: 1 addition & 1 deletion indexed_gzip/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@
"""


__version__ = '1.9.1'
__version__ = '1.9.2'
2 changes: 1 addition & 1 deletion indexed_gzip/indexed_gzip.pyx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# cython: binding=True,embedsignature=True
# cython: binding=True,embedsignature=True,freethreading_compatible=True
#
# The IndexedGzipFile class.
#
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["setuptools >= 40.8.0", "cython"]
requires = ["setuptools >= 40.8.0", "cython >= 3.1.0a1"]
build-backend = "setuptools.build_meta"

[project]
Expand Down

0 comments on commit 60f38a9

Please sign in to comment.