Skip to content

Commit d2111ea

Browse files
committed
CI: don't restrict Python version
1 parent 79b5e0d commit d2111ea

1 file changed

Lines changed: 7 additions & 11 deletions

File tree

.github/workflows/main.yml

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,11 @@ jobs:
88
matrix:
99
include:
1010
- os: ubuntu-latest
11-
python-version: "3.10"
1211
jack: jackd2
1312
- os: ubuntu-latest
14-
python-version: "3.10"
1513
jack: jackd1
1614
- os: macos-latest
17-
python-version: "3.10"
1815
- os: windows-latest
19-
python-version: "3.10"
2016
runs-on: ${{ matrix.os }}
2117
steps:
2218
- name: Install JACK on Ubuntu
@@ -42,14 +38,14 @@ jobs:
4238
shell: bash
4339
run: |
4440
jackd --no-realtime -d dummy &
45-
- name: Set up Python ${{ matrix.python-version }}
46-
uses: actions/setup-python@v1
41+
- name: Set up Python
42+
uses: actions/setup-python@v4
4743
with:
48-
python-version: ${{ matrix.python-version }}
44+
python-version: "3"
4945
- name: Double-check Python version
5046
run: |
5147
python --version
52-
- uses: actions/checkout@v2
48+
- uses: actions/checkout@v4
5349
- name: Install Python package
5450
run: |
5551
python -m pip install .
@@ -64,13 +60,13 @@ jobs:
6460
runs-on: ubuntu-latest
6561
steps:
6662
- name: Set up Python
67-
uses: actions/setup-python@v1
63+
uses: actions/setup-python@v4
6864
with:
69-
python-version: "3.10"
65+
python-version: "3"
7066
- name: Double-check Python version
7167
run: |
7268
python --version
73-
- uses: actions/checkout@v2
69+
- uses: actions/checkout@v4
7470
with:
7571
fetch-depth: 0
7672
- name: Install doc dependencies

0 commit comments

Comments
 (0)