Skip to content

Commit

Permalink
pypy 3
Browse files Browse the repository at this point in the history
  • Loading branch information
ameli committed Dec 21, 2023
1 parent 9196dc2 commit 77d7bdb
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy-pypi.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: deploy-pypi

on:
# push:
# branches:
# - main
push:
branches:
- main
release:
types:
- published
Expand Down Expand Up @@ -115,7 +115,7 @@ jobs:
env:
CIBW_ARCHS_MACOS: "x86_64"
CIBW_BUILD: "${{ matrix.python-version }}-macosx_x86_64"
CIBW_SKIP: "pp* cp36-* cp37-* cp38-*"
CIBW_SKIP: "pp37-* cp36-* cp37-* cp38-*"
CIBW_BUILD_VERBOSITY: 3
CIBW_ENVIRONMENT: "USE_LONG_INT=0 USE_UNSIGNED_LONG_INT=0 USE_CBLAS=0 USE_CUDA=0"
CIBW_BEFORE_BUILD: bash ./tools/wheels/install_openblas.sh "${{ matrix.python-version }}"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -1650,7 +1650,7 @@ def run(self):
),
ext_modules=external_modules,
install_requires=requirements,
python_requires='>=3.9',
python_requires='>=3.8',
setup_requires=[
'setuptools',
'wheel',
Expand Down
6 changes: 3 additions & 3 deletions tools/ci/cirrus_deploy_pypi_linux_aarch64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@ pypi_build_wheels_linux_aarch64_task:
- env:
CIBW_BUILD: "cp312-manylinux_aarch64"
- env:
CIBW_BUILD: "cp38-manylinux_aarch64"
CIBW_BUILD: "pp38-manylinux_aarch64"
- env:
CIBW_BUILD: "cp39-manylinux_aarch64"
CIBW_BUILD: "pp39-manylinux_aarch64"
- env:
CIBW_BUILD: "cp310-manylinux_aarch64"
CIBW_BUILD: "pp310-manylinux_aarch64"
env:
CIBW_ARCHS: "aarch64"
# CIBW_BUILD: "*-manylinux_aarch64"
Expand Down
6 changes: 3 additions & 3 deletions tools/ci/cirrus_deploy_pypi_macosx_arm64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ pypi_build_wheels_macosx_arm64_task:
- env:
CIBW_BUILD: "cp312-macosx_arm64"
- env:
CIBW_BUILD: "cp38-manylinux_aarch64"
CIBW_BUILD: "pp38-manylinux_aarch64"
- env:
CIBW_BUILD: "cp39-manylinux_aarch64"
CIBW_BUILD: "pp39-manylinux_aarch64"
- env:
CIBW_BUILD: "cp310-manylinux_aarch64"
CIBW_BUILD: "pp310-manylinux_aarch64"
env:
PATH: /opt/homebrew/opt/[email protected]/bin:/usr/local/lib:/usr/local/include:$PATH
# Specifying CIBW_ENVIRONMENT_MACOS overrides pyproject.toml, so include
Expand Down

0 comments on commit 77d7bdb

Please sign in to comment.