Skip to content

Commit 2c1c382

Browse files
committed
Fix python version in tox
This commit moves the default python version to 3.10 Signed-off-by: Pragadeeswaran Sathyanarayanan <[email protected]>
1 parent 1c9f38b commit 2c1c382

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

.github/workflows/checks.yaml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,13 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
max-parallel: 5
14-
matrix:
15-
python-version:
16-
- 3.7
1714
steps:
1815
- uses: actions/checkout@v2
1916

20-
- name: Set up Python ${{ matrix.python-version }}
21-
uses: actions/setup-python@v2
17+
- name: Set up Python
18+
uses: actions/setup-python@v4
2219
with:
23-
python-version: ${{ matrix.python-version }}
20+
python-version: '3.10'
2421

2522
- name: Install dependencies
2623
run: pip install tox

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py37
2+
envlist = py310
33
skipsdist = True
44

55
[testenv]

0 commit comments

Comments
 (0)