Skip to content

Commit f726134

Browse files
committed
ci: switch to python 3.10, use ubuntu-22.04 for python 3.7
1 parent bfdb563 commit f726134

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- uses: actions/checkout@v4
16-
- name: 🏗 Set up Python 3.7
16+
- name: 🏗 Set up Python 3.10
1717
uses: actions/setup-python@v4
1818
with:
19-
python-version: 3.7
19+
python-version: "3.10"
2020
- name: 🏗 Install build dependencies
2121
run: >-
2222
python -m pip install wheel --user
@@ -50,7 +50,7 @@ jobs:
5050
strategy:
5151
matrix:
5252
python: ["3.7", "3.8", "3.9", "3.10"]
53-
runs-on: ubuntu-latest
53+
runs-on: ubuntu-22.04 # change back to ubuntu-latest once we drop Python 3.7
5454
steps:
5555
- uses: actions/checkout@v4
5656
- name: 🏗 Set up Python ${{ matrix.python }}

0 commit comments

Comments
 (0)