Skip to content

Commit

Permalink
Use cibuildwheel v2.17.0 (#59)
Browse files Browse the repository at this point in the history
Summary:
Pull Request resolved: #59

We're seeing build breakages that are apparently caused by cibuildwheel v2.18, so let's keep using v2.17 for now.

Reviewed By: hanghu, SeaOtocinclus

Differential Revision: D57464193

fbshipit-source-id: dfd7449229c3fba83394f17485e9d6752450a71e
  • Loading branch information
Georges Berenger authored and facebook-github-bot committed May 16, 2024
1 parent 3a7349e commit 9846c83
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
fi
python -m pip install -U pip
python -m pip install numpy typing dataclasses pytest parameterized Pillow
python -m pip install cibuildwheel
python -m pip install cibuildwheel==2.17.0
- name: Build wheels for CPython
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
- name: Install cibuildwheel
run: |
python3 -m pip install cibuildwheel
python3 -m pip install cibuildwheel==2.17.0
- name: Build wheels for CPython
run: |
Expand Down
2 changes: 1 addition & 1 deletion scripts/build-macos-arm64-package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export CIBW_BEFORE_BUILD_MACOS="arch -arm64 brew install boost cmake fmt glog jp
export CIBW_SKIP="*-manylinux_i686 *musllinux*"

# Build wheels for all specified versions
python -m pip install cibuildwheel
python -m pip install cibuildwheel==2.17.0
python -m cibuildwheel --output-dir dist

# # Upload to PyPI
Expand Down

0 comments on commit 9846c83

Please sign in to comment.