From 7a3d6f37b8e7b2bf694bc0fbe2e56cbfcbb3cfcd Mon Sep 17 00:00:00 2001 From: Paul McCarthy Date: Tue, 29 Aug 2023 20:32:29 +0100 Subject: [PATCH 1/3] CI: Don't build for py312 until numpy wheels are available --- .ci/build_wheels.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.ci/build_wheels.sh b/.ci/build_wheels.sh index bde9b20d..5f7a0b8c 100755 --- a/.ci/build_wheels.sh +++ b/.ci/build_wheels.sh @@ -22,7 +22,9 @@ export CIBW_TEST_REQUIRES="cython pytest numpy nibabel coverage cython-coverage # # Disable musllinux builds until numpy binaries are available (as # compiling numpy takes too long, and causes GHA jobs to time out). -export CIBW_SKIP="pp* *musllinux*" +# +# Disable py312 builds until numpy is available +export CIBW_SKIP="pp* *musllinux* *312*" # Skip i686/aarch64 tests - I have experienced hangs on these # platforms, which I traced to a trivial numpy operation - From 387693fb7ed5f50f017963e6f6df6b3a7d3979d8 Mon Sep 17 00:00:00 2001 From: Paul McCarthy Date: Tue, 29 Aug 2023 20:33:23 +0100 Subject: [PATCH 2/3] DOC: Changelog --- CHANGELOG.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 46f2fb78..cf57c048 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,13 @@ # `indexed_gzip` changelog -## 1.8.4 (August 30th 2023) +## 1.8.5 (August 29th 2023) + + +* Updates to package build process (#138). + + +## 1.8.4 (August 29th 2023) * Change the `IndexedGzipFile` class to raise a `FileNotFoundError` instead From e1d2db7129e577ea17e470c7fe2e8be10954bf77 Mon Sep 17 00:00:00 2001 From: Paul McCarthy Date: Tue, 29 Aug 2023 20:33:34 +0100 Subject: [PATCH 3/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 f55891b0..cf82a2a1 100644 --- a/indexed_gzip/__init__.py +++ b/indexed_gzip/__init__.py @@ -19,4 +19,4 @@ """ -__version__ = '1.8.4' +__version__ = '1.8.5'