Skip to content

Commit 6e46849

Browse files
committed
Allow pytest 6.2.4
I confirmed that tests pass with pytest 6.2.4 by running tox -r -e py310,py311 --force-dep pytest==6.2.4 Running the corresponding command for pytest 6.2.3 does not pass, so this is the lowest version we can support on Python 3.10+.
1 parent ca17885 commit 6e46849

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

tox.ini

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,14 @@ deps =
1414
# with major versions that haven't been released yet. Each time a new major
1515
# version of pytest is released, once it's confirmed to work with this
1616
# package, we should bump this limit to the next major version.
17+
#
18+
# The lower bounds come from testing with different pytest versions using
19+
# tox's --force-dep option to find the earliest versions of pytest that are
20+
# known to work. If you add code that breaks with an old version of pytest,
21+
# feel free to raise these bounds to represent the earliest version that
22+
# works with your code.
1723
pytest >=4, <8; python_version<'3.10'
18-
pytest >=6.2.5, <8; python_version>='3.10'
24+
pytest >=6.2.4, <8; python_version>='3.10'
1925
pytest-cov
2026
six
2127
requests

0 commit comments

Comments
 (0)