Skip to content

Commit 09c4d3e

Browse files
committed
Updated to Python 3.10 for checks
1 parent 3198d92 commit 09c4d3e

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@ jobs:
4343
tox-env: ["black", "lint", "docs"]
4444
steps:
4545
- uses: actions/checkout@v2
46-
- name: Set up Python 3.9
46+
- name: Set up Python 3.10
4747
uses: actions/setup-python@v2
4848
with:
49-
python-version: 3.9
49+
python-version: "3.10"
5050
- name: Install dependencies
5151
run: |
5252
python -m pip install --upgrade pip

tox.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ commands =
2525
pytest --cov --no-cov-on-fail --cov-report xml {posargs}
2626

2727
[testenv:black]
28-
basepython = python3.9
28+
basepython = python3.10
2929
deps =
3030
-rrequirements/requirements-codestyle.txt
3131
commands = black --check .
3232

3333
[testenv:lint]
34-
basepython = python3.9
34+
basepython = python3.10
3535
deps =
3636
-rrequirements/requirements-codestyle.txt
3737
-rrequirements/requirements-testing.txt
@@ -40,7 +40,7 @@ commands = flake8
4040

4141
[testenv:docs]
4242
# keep in sync with .readthedocs.yml
43-
basepython = python3.9
43+
basepython = python3.10
4444
deps =
4545
-rrequirements/requirements-optionals.txt
4646
-rrequirements/requirements-documentation.txt

0 commit comments

Comments
 (0)