Skip to content

Commit 9b58dd1

Browse files
Stop requiring pytest-subtests for python>3.9, it has been incorporated into pytest (#115)
1 parent 7dc1b6c commit 9b58dd1

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tox.ini

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@ skip_missing_interpreters = true
66
[testenv]
77
description = Test that the tzdata contents are accessible
88
deps =
9-
pytest
10-
pytest-subtests; python_version>='3.6'
9+
pytest >= 9; python_version >= '3.10'
10+
pytest; python_version < '3.10'
11+
pytest-subtests; python_version >= '3.6' and python_version <= '3.9'
1112
importlib_resources; python_version<'3.7'
1213
commands =
1314
pytest {toxinidir} {posargs}

0 commit comments

Comments
 (0)