Skip to content

Commit

Permalink
Merge pull request #95 from pauldmccarthy/mnt/numpy-for-build
Browse files Browse the repository at this point in the history
Mnt/numpy for build
  • Loading branch information
pauldmccarthy authored Apr 13, 2022
2 parents 4bc72b2 + dd00466 commit aef8be8
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .ci/build_wheels.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/usr/bin/env bash

set -e

# Make sure cython is available on all platforms
# Numpy is required to build the test modules
export CIBW_BEFORE_BUILD="pip install cython numpy"
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# `indexed_gzip` changelog


## 1.6.8 (April 13th 2022)
## 1.6.9 (April 13th 2022)


* Changed the default read buffer size used by the `IndexedGzipFile` class
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.6.8'
__version__ = '1.6.9'
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[build-system]
requires = ["setuptools >= 40.8.0", "wheel", "cython"]
requires = ["setuptools >= 40.8.0", "wheel", "cython", "numpy"]
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ def run(self):
files = [
'*.so',
op.join(igzbase, 'indexed_gzip.c'),
op.join(igzbase, 'zran.o'),
op.join(igzbase, 'zran_file_util.o'),
op.join(igzbase, '*.pyc'),
op.join(igzbase, '*.so'),
op.join(igzbase, 'tests', '*.so'),
Expand Down

0 comments on commit aef8be8

Please sign in to comment.