Skip to content

Commit a16a1bf

Browse files
authored
Merge pull request #81 from sameeul/py312_wheels
Add python 3.12 wheels
2 parents 493a857 + 9b82710 commit a16a1bf

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.github/workflows/build_and_test_mac.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ env:
1212
jobs:
1313
Build_and_Run_GTest:
1414
name: Build and Run GoogleTest
15-
runs-on: macos-11
15+
runs-on: macos-12
1616
defaults:
1717
run:
1818
shell: bash -l {0}
@@ -45,7 +45,7 @@ jobs:
4545

4646
Build_and_Run_PyTest:
4747
name: Build and Run PyTest
48-
runs-on: macos-11
48+
runs-on: macos-12
4949
defaults:
5050
run:
5151
shell: bash -l {0}

.github/workflows/build_wheels.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ jobs:
1212
MACOSX_DEPLOYMENT_TARGET: "10.15"
1313
strategy:
1414
matrix:
15-
os: [ubuntu-20.04, macos-11, windows-latest]
15+
os: [ubuntu-20.04, macos-12, windows-latest]
1616
cibw_archs: ["auto64"]
17-
cibw_build: ["cp38-*", "cp39-*", "cp310-*", "cp311-*"]
17+
cibw_build: ["cp38-*", "cp39-*", "cp310-*", "cp311-*", "cp312-*"]
1818

1919
steps:
2020
- uses: actions/checkout@v3
@@ -30,7 +30,7 @@ jobs:
3030

3131
- name: Install cibuildwheel
3232
run: |
33-
python -m pip install cibuildwheel==2.12.1 delvewheel wheel
33+
python -m pip install cibuildwheel==2.19.2 delvewheel wheel
3434
3535
- name: Building wheels
3636
run: |
@@ -73,7 +73,7 @@ jobs:
7373
matrix:
7474
os: [macos-13-xlarge]
7575
cibw_archs: ["arm64"]
76-
cibw_build: ["cp39-*", "cp310-*", "cp311-*"]
76+
cibw_build: ["cp39-*", "cp310-*", "cp311-*", "cp312-*"]
7777

7878
steps:
7979
- uses: actions/checkout@v3

.github/workflows/publish_pypi.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ jobs:
1414
MACOSX_DEPLOYMENT_TARGET: "10.15"
1515
strategy:
1616
matrix:
17-
os: [ubuntu-20.04, macos-11, windows-latest]
17+
os: [ubuntu-20.04, macos-12, windows-latest]
1818
cibw_archs: ["auto64"]
19-
cibw_build: ["cp38-*", "cp39-*", "cp310-*", "cp311-*"]
19+
cibw_build: ["cp38-*", "cp39-*", "cp310-*", "cp311-*", "cp312-*"]
2020

2121
steps:
2222
- uses: actions/checkout@v3
@@ -33,7 +33,7 @@ jobs:
3333

3434
- name: Install cibuildwheel
3535
run: |
36-
python -m pip install cibuildwheel==2.12.1 delvewheel wheel
36+
python -m pip install cibuildwheel==2.19.2 delvewheel wheel
3737
3838
- name: Building wheels
3939
run: |
@@ -79,7 +79,7 @@ jobs:
7979
matrix:
8080
os: [macos-13-xlarge]
8181
cibw_archs: ["arm64"]
82-
cibw_build: ["cp39-*", "cp310-*", "cp311-*"]
82+
cibw_build: ["cp39-*", "cp310-*", "cp311-*", "cp312-*"]
8383

8484
steps:
8585
- uses: actions/checkout@v3

0 commit comments

Comments
 (0)