Skip to content

Commit 43d04cf

Browse files
Updated github workflow Python version
1 parent 9a7e81d commit 43d04cf

File tree

2 files changed

+4
-12
lines changed

2 files changed

+4
-12
lines changed

.github/workflows/ci_tests.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,12 @@ on:
88
jobs:
99
build:
1010
runs-on: ubuntu-latest
11-
strategy:
12-
matrix:
13-
python-version: ['3.9.4', '<3.12']
14-
1511
steps:
1612
- uses: actions/checkout@v4
17-
- name: Set up Python ${{ matrix.python-version }}
13+
- name: Set up Python
1814
uses: actions/setup-python@v5
1915
with:
20-
python-version: ${{ matrix.python-version }}
16+
python-version: '3'
2117
check-latest: true
2218
- name: Install dependencies
2319
run: |

.github/workflows/scheduled_py3_tests.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,12 @@ on:
77
jobs:
88
build:
99
runs-on: ubuntu-latest
10-
strategy:
11-
matrix:
12-
python-version: ['3.9.4', '<3.12']
13-
1410
steps:
1511
- uses: actions/checkout@v4
16-
- name: Set up Python ${{ matrix.python-version }}
12+
- name: Set up Python
1713
uses: actions/setup-python@v5
1814
with:
19-
python-version: ${{ matrix.python-version }}
15+
python-version: '3'
2016
check-latest: true
2117
- name: Install dependencies
2218
run: |

0 commit comments

Comments
 (0)