Skip to content

Commit

Permalink
add support for python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
cforeman-cqc committed Oct 24, 2023
1 parent 0e24bd5 commit 3a546cd
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
name: build linux wheels
runs-on: ubuntu-20.04
env:
PY_VERS: cp38-cp38 cp39-cp39 cp310-cp310 cp311-cp311
PY_VERS: cp38-cp38 cp39-cp39 cp310-cp310 cp311-cp311 cp312-cp312
steps:
- uses: actions/checkout@v2
- name: set up container
Expand Down Expand Up @@ -54,6 +54,12 @@ jobs:
python-version: '3.11'
- name: build wheel (3.11)
run: .github/workflows/macosbuildwheel
- name: set up python 3.12
uses: actions/setup-python@v2
with:
python-version: '3.12'
- name: build wheel (3.12)
run: .github/workflows/macosbuildwheel
- uses: actions/upload-artifact@v2
with:
name: macos_wheels
Expand Down Expand Up @@ -122,6 +128,14 @@ jobs:
run: |
python -m pip install -U pip wheel scikit-build
python setup.py bdist_wheel -d "${{ github.workspace }}/wheelhouse"
- name: set up python 3.12
uses: actions/setup-python@v2
with:
python-version: '3.12'
- name: build wheel (3.12)
run: |
python -m pip install -U pip wheel scikit-build
python setup.py bdist_wheel -d "${{ github.workspace }}/wheelhouse"
- uses: actions/upload-artifact@v2
with:
name: windows_wheels
Expand Down

0 comments on commit 3a546cd

Please sign in to comment.