We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 925466f commit 547c4f4Copy full SHA for 547c4f4
1 file changed
.github/workflows/wheel_builder_python_3.8_or_older.yml
@@ -7,7 +7,7 @@ jobs:
7
runs-on: ${{ matrix.os }}
8
strategy:
9
matrix:
10
- os: [ubuntu-20.04]
+ os: [ubuntu-latest]
11
environment: pypi
12
permissions:
13
id-token: write
@@ -16,10 +16,10 @@ jobs:
16
- uses: actions/setup-python@v2
17
18
- name: cibuildwheel installation
19
- run: python -m pip install cibuildwheel==1.11.0 twine
+ run: python -m pip install cibuildwheel twine
20
21
- name: build specified wheels on ubuntu
22
- if: matrix.os == 'ubuntu-20.04'
+ if: matrix.os == 'ubuntu-latest'
23
run: |
24
python -m cibuildwheel --output-dir dist
25
env:
0 commit comments