File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 55 tags :
66 - ' *'
77env :
8- CIBW_SKIP : cp27-* cp33-* cp34-* cp35-* cp36* pp27* pp36* pp37 * *-musllinux*
8+ CIBW_SKIP : pp * *-musllinux*
99
1010jobs :
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
Original file line number Diff line number Diff line change 11CHANGES
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+
4100.7.1
511-----
612
13+ * build: skip musllinux
714* fix: memory leak in eytzinger\_binary\_search
815
9160.7.0
Original file line number Diff line number Diff line change @@ -10,14 +10,14 @@ home_page = https://github.com/seung-lab/mapbuffer/
1010license = License :: OSI Approved :: BSD License
1111classifier =
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]
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ def __repr__(self):
1616
1717setuptools .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 (
You can’t perform that action at this time.
0 commit comments