Skip to content

Commit

Permalink
Merge pull request #581 from Yelrose/py39_py310_support
Browse files Browse the repository at this point in the history
support py38-py310
  • Loading branch information
Yelrose authored Dec 11, 2023
2 parents 6dbb47c + 4030377 commit 4890447
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/manully_test_PYPI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
matrix:
os: [ 'ubuntu-latest', 'macos-latest' ]
arch: [ 'x86_64' ]
cibw_python: [ 'cp36*', 'cp37*', 'cp38*' ]
cibw_python: [ 'cp38*', 'cp39*', 'cp310*' ]
manylinux: [ 'manylinux2014', 'manylinux1' ]
steps:
- uses: actions/checkout@v2
Expand All @@ -36,7 +36,7 @@ jobs:
CIBW_BUILD: ${{ matrix.cibw_python }}
CIBW_ARCHS: ${{ matrix.arch }}
CIBW_MANYLINUX_X86_64_IMAGE: ${{ matrix.manylinux }}
CIBW_BEFORE_BUILD: "pip install -r requirements.txt cython>=0.29.21 numpy==1.19.0"
CIBW_BEFORE_BUILD: "pip install -r requirements.txt"
CIBW_SKIP: "*-musllinux_*"
CIBW_BEFORE_ALL_LINUX: >
yum -y update &&
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
numpy>=1.16.4
cython>=0.25.2
numpy==1.23.5
cython==3.0.6
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,8 @@ def get_package_data(path):
package_data=package_data,
setup_requires=[
'setuptools>=18.0',
'numpy>=1.16.4',
'numpy==1.23.5',
'cython==3.0.6',
],
install_requires=requirements,
cmdclass={'build_ext': CustomBuildExt},
Expand Down

0 comments on commit 4890447

Please sign in to comment.