-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
12 additions
and
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,17 +29,20 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.11 | ||
# - uses: actions/setup-python@v2 | ||
# with: | ||
# python-version: 3.11 | ||
|
||
- name: Setup pip | ||
run: | | ||
python -m pip install --upgrade pip | ||
python -m pip install cibuildwheel | ||
# - name: Setup pip | ||
# run: | | ||
# python -m pip install --upgrade pip | ||
# python -m pip install cibuildwheel | ||
|
||
- name: Build wheel | ||
run: python -m cibuildwheel --output-dir dist/ | ||
# - name: Build wheel | ||
# run: python -m cibuildwheel --output-dir dist/ | ||
- name: Build wheels | ||
uses: uses: pypa/[email protected] | ||
output-dir: dist | ||
env: | ||
CIBW_BUILD: cp311-manylinux_x86_64 | ||
CIBW_SKIP: "*-win32 *-manylinux_i686" | ||
|