Skip to content

Commit

Permalink
Updated to Python 3.10 for checks
Browse files Browse the repository at this point in the history
  • Loading branch information
sliverc committed Sep 10, 2024
1 parent 3198d92 commit 09c4d3e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ jobs:
tox-env: ["black", "lint", "docs"]
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
6 changes: 3 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ commands =
pytest --cov --no-cov-on-fail --cov-report xml {posargs}

[testenv:black]
basepython = python3.9
basepython = python3.10
deps =
-rrequirements/requirements-codestyle.txt
commands = black --check .

[testenv:lint]
basepython = python3.9
basepython = python3.10
deps =
-rrequirements/requirements-codestyle.txt
-rrequirements/requirements-testing.txt
Expand All @@ -40,7 +40,7 @@ commands = flake8

[testenv:docs]
# keep in sync with .readthedocs.yml
basepython = python3.9
basepython = python3.10
deps =
-rrequirements/requirements-optionals.txt
-rrequirements/requirements-documentation.txt
Expand Down

0 comments on commit 09c4d3e

Please sign in to comment.