-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CI: pin version of cibuildwheel, skip Python 3.12 for now
- Loading branch information
1 parent
308d7f7
commit 35d04d8
Showing
4 changed files
with
12 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,21 +13,11 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- uses: actions/setup-python@v3 | ||
name: Install Python | ||
with: | ||
python-version: '3.9' | ||
|
||
- name: Install cibuildwheel | ||
run: | | ||
python -m pip install cibuildwheel | ||
- name: Build wheels | ||
run: | | ||
python -m cibuildwheel --output-dir wheelhouse | ||
uses: pypa/[email protected] | ||
env: | ||
# Skip Python 2.7, 3.5, 3.11, 32 bit Linux, and PyPy | ||
CIBW_SKIP: cp27-* cp35-* *-manylinux_i686 *musllinux* pp* | ||
# Skip Python 3.12, 32 bit Linux, and PyPy | ||
CIBW_SKIP: cp312-* *-manylinux_i686 *musllinux* pp* | ||
CIBW_BEFORE_ALL_LINUX: yum install -y tk mesa-libGLU-devel | ||
CIBW_BEFORE_BUILD: > | ||
pip install cython FXrays low_index sphinx sphinx_rtd_theme && | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,21 +13,11 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- uses: actions/setup-python@v3 | ||
name: Install Python | ||
with: | ||
python-version: '3.9' | ||
|
||
- name: Install cibuildwheel | ||
run: | | ||
python -m pip install cibuildwheel | ||
- name: Build wheels | ||
run: | | ||
python -m cibuildwheel --output-dir wheelhouse | ||
uses: pypa/[email protected] | ||
env: | ||
# Skip Python 2.7, 3.5, 3.11, 32 bit Linux, and PyPy | ||
CIBW_SKIP: cp27-* cp35-* cp36-* cp37-* pp* | ||
# Skip Python 3.12 and PyPy | ||
CIBW_SKIP: cp312-* pp* | ||
CIBW_ARCHS_MACOS: x86_64 universal2 | ||
CIBW_BEFORE_BUILD: > | ||
pip install cython FXrays low_index sphinx sphinx_rtd_theme && | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,26 +8,16 @@ jobs: | |
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [windows-latest] | ||
os: [windows-2019] | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- uses: actions/setup-python@v3 | ||
name: Install Python | ||
with: | ||
python-version: '3.9' | ||
|
||
- name: Install cibuildwheel | ||
run: | | ||
python -m pip install cibuildwheel | ||
- name: Build wheels | ||
run: | | ||
python -m cibuildwheel --output-dir wheelhouse | ||
uses: pypa/[email protected] | ||
env: | ||
# Skip Python 2.7, 3.5, 3.11, and PyPy | ||
CIBW_SKIP: cp27-* cp35-* pp* | ||
# Skip Python 3.12, and PyPy | ||
CIBW_SKIP: cp312-* pp* | ||
CIBW_BEFORE_BUILD: > | ||
pip install cython FXrays low_index sphinx sphinx_rtd_theme && | ||
pip install --pre --extra-index-url https://test.pypi.org/simple cypari && | ||
|