Skip to content

Commit

Permalink
ci: rebuild for numpy 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
william-silversmith committed Jun 22, 2024
1 parent 89df92b commit 89a9f40
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
tags:
- '*'
env:
CIBW_SKIP: cp27-* cp33-* cp34-* cp35-* cp36* pp27* pp36* pp37* *-musllinux*
CIBW_SKIP: pp* *-musllinux*

jobs:
build_wheels:
Expand All @@ -27,11 +27,11 @@ jobs:
uses: docker/setup-qemu-action@v1

- name: Build wheels
uses: pypa/cibuildwheel@v2.16.5
uses: pypa/cibuildwheel@v2.19.1
# to supply options, put them in 'env', like:
env:
CIBW_ARCHS_LINUX: ${{matrix.arch}}
CIBW_BEFORE_BUILD: pip install oldest-supported-numpy setuptools wheel
CIBW_BEFORE_BUILD: pip install numpy setuptools wheel
CIBW_ARCHS_MACOS: "x86_64 arm64"

- uses: actions/upload-artifact@v2
Expand Down
7 changes: 7 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
CHANGES
=======

0.7.2
-----

* install: add "str" to make numpy import go smoothly
* build: add support for py312

0.7.1
-----

* build: skip musllinux
* fix: memory leak in eytzinger\_binary\_search

0.7.0
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ home_page = https://github.com/seung-lab/mapbuffer/
license = License :: OSI Approved :: BSD License
classifier =
Intended Audience :: Developers
Development Status :: 4 - Beta
Development Status :: 5 - Production/Stable
License :: OSI Approved :: BSD License
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: Software Development :: Libraries :: Python Modules

[global]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def __repr__(self):

setuptools.setup(
setup_requires=['pbr'],
python_requires=">=3.7,<4.0",
python_requires=">=3.8,<4.0",
include_package_data=True,
ext_modules=[
setuptools.Extension(
Expand Down

0 comments on commit 89a9f40

Please sign in to comment.