Skip to content

Commit 34d3811

Browse files
committed
updates
1 parent a8b71ca commit 34d3811

1 file changed

Lines changed: 7 additions & 9 deletions

File tree

.github/workflows/wheels.yml

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ on:
77
types: [published]
88

99
env:
10-
# USE_BAZEL_VERSION: "7.2.1"
11-
USE_BAZEL_VERSION: "6.5.0"
10+
USE_BAZEL_VERSION: "7.6.1"
11+
1212

1313
jobs:
1414
build:
@@ -18,8 +18,9 @@ jobs:
1818
strategy:
1919
fail-fast: false
2020
matrix:
21-
os: [ubuntu]
22-
python-version: ['cp311']
21+
os: [ubuntu-latest]
22+
python-version: ['3.9', '3.10', '3.11', '3.12']
23+
2324

2425
runs-on: ${{ format('{0}-latest', matrix.os) }}
2526
steps:
@@ -29,14 +30,11 @@ jobs:
2930
- name: Set up python
3031
uses: actions/setup-python@v5
3132
with:
32-
python-version: '3.11'
33+
python-version: ${{ matrix.python-version }}
3334

3435
- name: Install python build dependencies
3536
run: |
36-
pip install wheel
37-
38-
- name: Install build
39-
run: python -m pip install --upgrade pip build
37+
python -m pip install --upgrade pip build
4038
4139
- name: Verify bazel installation
4240
run: |

0 commit comments

Comments
 (0)