Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CICD: Bump pypa/cibuildwheel from 2.21.3 to 2.22.0 #64

Merged
merged 2 commits into from
Nov 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/nonvendored_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

- uses: actions/setup-python@v5
with:
python-version: '3.10'
python-version: '3.11'

- name: Install deps
run: python -m pip install twine build
Expand Down Expand Up @@ -52,10 +52,10 @@ jobs:

- uses: actions/setup-python@v5
with:
python-version: '3.10'
python-version: '3.11'

- name: Install cibuildwheel
run: python -m pip install cibuildwheel
run: python -m pip install cibuildwheel==2.22.0

- name: Build wheel
run: python -m cibuildwheel --output-dir wheelhouse
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:

- uses: actions/setup-python@v5
with:
python-version: "3.10"
python-version: "3.11"

- name: Cache OpenMP repo
if: matrix.os == 'macos-latest'
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
cmake --build openmp_build --target install --config Release

- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.21.3
run: python -m pip install cibuildwheel==2.22.0

- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
Expand Down Expand Up @@ -141,7 +141,7 @@ jobs:
-DCMAKE_INSTALL_PREFIX="/usr/local"
cmake --build openmp_build --target install --config Release

- uses: pypa/cibuildwheel@v2.21.3
- uses: pypa/cibuildwheel@v2.22.0
env:
# only build for x86_64, arm wheels are build seperately
CIBW_ARCHS: "x86_64"
Expand Down Expand Up @@ -169,7 +169,7 @@ jobs:
steps:
- uses: actions/setup-python@v5
with:
python-version: "3.10"
python-version: "3.11"
- uses: actions/download-artifact@v4
with:
pattern: artifact-*
Expand All @@ -193,7 +193,7 @@ jobs:
steps:
- uses: actions/setup-python@v5
with:
python-version: "3.10"
python-version: "3.11"

- uses: actions/download-artifact@v4
with:
Expand Down
Loading