Skip to content

Commit 49e2014

Browse files
Removed tests for Python versions <3.12 (because numpy version that comes bundled with 3.12 isn't backward-compatible)
1 parent 858a513 commit 49e2014

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/main.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ jobs:
1010
flake8_py3:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v2
14-
- name: Set up Python 3.8
15-
uses: actions/setup-python@v2
13+
- uses: actions/checkout@v4
14+
- name: Set up Python 3.12
15+
uses: actions/setup-python@v5
1616
with:
17-
python-version: 3.8
17+
python-version: 3.12
1818
- name: Install dependencies
1919
run: |
2020
python -m pip install --upgrade pip
@@ -32,11 +32,11 @@ jobs:
3232
needs: [flake8_py3]
3333
strategy:
3434
matrix:
35-
python: [3.8, 3.9, '3.10']
35+
python: [3.12]
3636
steps:
37-
- uses: actions/checkout@v2
37+
- uses: actions/checkout@v4
3838
- name: Set up Python
39-
uses: actions/setup-python@v2
39+
uses: actions/setup-python@v5
4040
with:
4141
python-version: ${{ matrix.python }}
4242
- name: Install dependencies

0 commit comments

Comments
 (0)