Skip to content

Commit 89a9f40

Browse files
ci: rebuild for numpy 2.0
1 parent 89df92b commit 89a9f40

4 files changed

Lines changed: 13 additions & 6 deletions

File tree

.github/workflows/build_wheel.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
tags:
66
- '*'
77
env:
8-
CIBW_SKIP: cp27-* cp33-* cp34-* cp35-* cp36* pp27* pp36* pp37* *-musllinux*
8+
CIBW_SKIP: pp* *-musllinux*
99

1010
jobs:
1111
build_wheels:
@@ -27,11 +27,11 @@ jobs:
2727
uses: docker/setup-qemu-action@v1
2828

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

3737
- uses: actions/upload-artifact@v2

ChangeLog

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,16 @@
11
CHANGES
22
=======
33

4+
0.7.2
5+
-----
6+
7+
* install: add "str" to make numpy import go smoothly
8+
* build: add support for py312
9+
410
0.7.1
511
-----
612

13+
* build: skip musllinux
714
* fix: memory leak in eytzinger\_binary\_search
815

916
0.7.0

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ home_page = https://github.com/seung-lab/mapbuffer/
1010
license = License :: OSI Approved :: BSD License
1111
classifier =
1212
Intended Audience :: Developers
13-
Development Status :: 4 - Beta
13+
Development Status :: 5 - Production/Stable
1414
License :: OSI Approved :: BSD License
1515
Programming Language :: Python :: 3
16-
Programming Language :: Python :: 3.7
1716
Programming Language :: Python :: 3.8
1817
Programming Language :: Python :: 3.9
1918
Programming Language :: Python :: 3.10
2019
Programming Language :: Python :: 3.11
20+
Programming Language :: Python :: 3.12
2121
Topic :: Software Development :: Libraries :: Python Modules
2222

2323
[global]

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def __repr__(self):
1616

1717
setuptools.setup(
1818
setup_requires=['pbr'],
19-
python_requires=">=3.7,<4.0",
19+
python_requires=">=3.8,<4.0",
2020
include_package_data=True,
2121
ext_modules=[
2222
setuptools.Extension(

0 commit comments

Comments
 (0)