Skip to content

Commit

Permalink
Fix Python versions used.
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Howitz committed Oct 19, 2021
1 parent 21fee78 commit 3fd84ef
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Expand Up @@ -31,7 +31,7 @@ jobs:
- ["3.10", "py310"]
- ["3.9", "docs"]
- ["3.9", "coverage"]
- ["3.8", "py38-datetime"]
- ["3.9", "py39-datetime"]
exclude:
- { os: windows, config: ["3.9", "lint"] }
- { os: windows, config: ["3.9", "docs"] }
Expand Down
4 changes: 2 additions & 2 deletions .meta.toml
Expand Up @@ -51,7 +51,7 @@ testenv-additional = [
" coverage combine",
" coverage html",
" coverage report -m --fail-under=100",
"depends = py27,py35,py36,py38-datetime,py37,py38,py39,coverage",
"depends = py27,py35,py36,py39-datetime,py37,py38,py39,coverage",
]
coverage-basepython = "python3.8"
coverage-command = "pytest --cov=src --cov=tests --cov-report= {posargs}"
Expand Down Expand Up @@ -83,5 +83,5 @@ additional-ignores = [

[github-actions]
additional-config = [
"- [\"3.8\", \"py38-datetime\"]",
"- [\"3.9\", \"py39-datetime\"]",
]
2 changes: 1 addition & 1 deletion tox.ini
Expand Up @@ -51,7 +51,7 @@ commands =
coverage combine
coverage html
coverage report -m --fail-under=100
depends = py27,py35,py36,py38-datetime,py37,py38,py39,coverage
depends = py27,py35,py36,py39-datetime,py37,py38,py39,coverage

[testenv:lint]
basepython = python3
Expand Down

0 comments on commit 3fd84ef

Please sign in to comment.