Skip to content

Commit

Permalink
Put envs on separate lines and match GHA versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
EmilStenstrom committed Jul 12, 2024
1 parent 4e30015 commit acf06d8
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/index.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
Expand Down
13 changes: 10 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,15 @@

[tox]
envlist =
py36,py37,py38,py39,py310
coverage,flake8,isort,mypy
py36
py37
py38
py39
py310
coverage
flake8
isort
mypy
requires =
virtualenv<=20.21.1
isolated_build = True
Expand All @@ -18,7 +25,7 @@ python =
3.7: py37
3.8: py38
3.9: py39
3.10: py310, coverage, flake8, isort, mypy
3.10: coverage, flake8, isort, mypy
fail_on_no_env = True

[testenv]
Expand Down

0 comments on commit acf06d8

Please sign in to comment.