Skip to content

Commit

Permalink
ci: switch to python 3.10, use ubuntu-22.04 for python 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
foosel committed Jan 7, 2025
1 parent bfdb563 commit f726134
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: 🏗 Set up Python 3.7
- name: 🏗 Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: 3.7
python-version: "3.10"
- name: 🏗 Install build dependencies
run: >-
python -m pip install wheel --user
Expand Down Expand Up @@ -50,7 +50,7 @@ jobs:
strategy:
matrix:
python: ["3.7", "3.8", "3.9", "3.10"]
runs-on: ubuntu-latest
runs-on: ubuntu-22.04 # change back to ubuntu-latest once we drop Python 3.7
steps:
- uses: actions/checkout@v4
- name: 🏗 Set up Python ${{ matrix.python }}
Expand Down

0 comments on commit f726134

Please sign in to comment.