Skip to content

Commit

Permalink
ci: Fixes python version
Browse files Browse the repository at this point in the history
  • Loading branch information
ntlhui committed Dec 2, 2023
1 parent 3ed9a19 commit 47e949d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,19 +37,22 @@ jobs:

# Used to host cibuildwheel
- uses: actions/setup-python@v3
with:
python-version: '3.9'

- name: Upgrade pip
run: python -m pip install --upgrade pip

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

- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
# to supply options, put them in 'env', like:
# env:
# CIBW_SOME_OPTION: value
env:
CIBW_BUILD: "cp39-*64"
CIBW_BEFORE_BUILD: git submodule update --init --recursive && pip install .

- uses: actions/upload-artifact@v3
Expand Down

0 comments on commit 47e949d

Please sign in to comment.