From 9e661f21ce18cd7b043a8390f28b5cbf1f85ce18 Mon Sep 17 00:00:00 2001 From: Paul McCarthy Date: Wed, 27 Nov 2024 11:38:20 +0000 Subject: [PATCH 1/3] CI: Skip tests on cp313t-win due to inexplicable failures --- .ci/build_wheels.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/build_wheels.sh b/.ci/build_wheels.sh index 879e0fcf..da91454f 100755 --- a/.ci/build_wheels.sh +++ b/.ci/build_wheels.sh @@ -45,7 +45,7 @@ export CIBW_SKIP="cp37* pp*" # locally, so am disabling them for the time # being. # -export CIBW_TEST_SKIP="*i686* *aarch64* cp312-win* cp313-win*" +export CIBW_TEST_SKIP="*i686* *aarch64* cp312-win* cp313-win* cp313t-win*" # Enable free-threaded builds for Python versions (3.13t) that support it export CIBW_FREE_THREADED_SUPPORT=1 From ae9e379ff806c252e799988a73b5a55d88477e49 Mon Sep 17 00:00:00 2001 From: Paul McCarthy Date: Wed, 27 Nov 2024 11:39:12 +0000 Subject: [PATCH 2/3] MNT: Version --- indexed_gzip/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indexed_gzip/__init__.py b/indexed_gzip/__init__.py index ceba6741..d92d53cc 100644 --- a/indexed_gzip/__init__.py +++ b/indexed_gzip/__init__.py @@ -19,4 +19,4 @@ """ -__version__ = '1.9.3' +__version__ = '1.9.4' From 8a883f7d03efad663cc3a08784bf9da1c6afcaf3 Mon Sep 17 00:00:00 2001 From: Paul McCarthy Date: Wed, 27 Nov 2024 11:40:43 +0000 Subject: [PATCH 3/3] DOC: Changelog --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c627a3d..8815f1c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ # `indexed_gzip` changelog +## 1.9.4 (November 28th 2024) + + +* Skip CI tests on Windows/free-threaded python (#163). + + ## 1.9.3 (November 27th 2024)