We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c9f38b commit 2c1c382Copy full SHA for 2c1c382
.github/workflows/checks.yaml
@@ -11,16 +11,13 @@ jobs:
11
runs-on: ubuntu-latest
12
strategy:
13
max-parallel: 5
14
- matrix:
15
- python-version:
16
- - 3.7
17
steps:
18
- uses: actions/checkout@v2
19
20
- - name: Set up Python ${{ matrix.python-version }}
21
- uses: actions/setup-python@v2
+ - name: Set up Python
+ uses: actions/setup-python@v4
22
with:
23
- python-version: ${{ matrix.python-version }}
+ python-version: '3.10'
24
25
- name: Install dependencies
26
run: pip install tox
tox.ini
@@ -1,5 +1,5 @@
1
[tox]
2
-envlist = py37
+envlist = py310
3
skipsdist = True
4
5
[testenv]
0 commit comments