Skip to content

Commit

Permalink
Attempt to add Python 3.8 and 3.9 to the CI workflows.
Browse files Browse the repository at this point in the history
  • Loading branch information
culler committed Nov 5, 2023
1 parent 870c863 commit ba49729
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
run: |
python3 -m cibuildwheel --output-dir wheelhouse
env:
CIBW_BUILD: cp310-manylinux_x86_64 cp311-manylinux_x86-64 cp312-manylinux_x86_64
CIBW_BUILD: cp38-manylinux_x86_64 cp39-manylinux_x86-64 cp310-manylinux_x86_64 cp311-manylinux_x86-64 cp312-manylinux_x86_64
CIBW_BEFORE_BUILD: |
pip3 install cython>=3.0.0
CIBW_REPAIR_WHEEL_COMMAND_LINUX: auditwheel repair --strip -w {dest_dir} {wheel}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: actions/setup-python@v2
name: Install Python
with:
python-version: 3.12-dev
python-version: 3.12
- name: Install cibuildwheel
run: |
python -m pip install cibuildwheel
Expand All @@ -25,7 +25,7 @@ jobs:
run: |
python3.12 -m cibuildwheel --output-dir wheelhouse
env:
CIBW_BUILD: cp310-* cp311-* cp312-*
CIBW_BUILD: cp38* cp39* cp310-* cp311-* cp312-*
CIBW_ARCHS_MACOS: "x86_64 arm64 universal2"
CIBW_BEFORE_BUILD: |
pip install cython>=3.0.0
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: actions/setup-python@v4
name: Install a Python to use for building
with:
python-version: '3.11'
python-version: '3.12'

- uses: msys2/setup-msys2@v2
name: Setup an msys2 environment
Expand Down Expand Up @@ -50,7 +50,7 @@ jobs:
python -m cibuildwheel --output-dir wheelhouse
env:
CIBW_ARCHS: AMD64
CIBW_BUILD: cp310* cp311* cp312-*
CIBW_BUILD: cp38* cp39* cp310* cp311* cp312-*
CIBW_BEFORE_BUILD: |
pip install cython
CIBW_TEST_COMMAND: python -m cypari.test
Expand Down

0 comments on commit ba49729

Please sign in to comment.