Skip to content

Commit

Permalink
Merge pull request #160 from pauldmccarthy/mnt/drop-py37
Browse files Browse the repository at this point in the history
MNT: Drop python 3.7
  • Loading branch information
pauldmccarthy authored Nov 18, 2024
2 parents 60f38a9 + f2e466c commit 14a8b47
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
9 changes: 6 additions & 3 deletions .ci/build_wheels.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,12 @@ export CIBW_ENVIRONMENT_WINDOWS="ZLIB_HOME='$ZLIB_HOME'"
# Run quick test suite on built wheels.
export CIBW_TEST_REQUIRES="cython pytest numpy nibabel coverage cython-coverage pytest-cov"

# Disable pypy builds (reasons for doing this have been lost to
# history [GHA logs of failing builds deleted]).
export CIBW_SKIP="pp*"
# Disable python 3.7, as it is EOL as of June 2023, and
# unsupported by cython>=3.1.0
#
# Disable pypy builds (reasons for doing this have been
# lost to history [GHA logs of failing builds deleted]).
export CIBW_SKIP="cp37* pp*"

# Skip i686 and aarch64 tests:
#
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

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


## 1.9.1 (November 15th 2024)
Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,11 @@ A major advantage of `indexed_gzip` is that it will work with any GZIP file.
However, if you have control over the creation of your GZIP files, you may
wish to consider some alternatives:

* [`rapidgzip`](https://github.com/mxmlnkn/rapidgzip/) is an accelerated
GZIP decompression library which works with any GZIP file.
* [`mgzip`](https://github.com/vinlyx/mgzip/) provides an accelerated
GZIP compression and decompression library.
GZIP compression and decompression library; in order to obtain improved
performance you must create your files with `mgzip`.
* Compression formats other than GZIP, such as `bzip2` and `xz`, have better
support for random access.

Expand Down

0 comments on commit 14a8b47

Please sign in to comment.