Skip to content

Commit 950c0d7

Browse files
authored
Merge pull request #128 from dmtucker/py310-pytest6.2
Require pytest 6.2+ on python 3.10+
2 parents 0f669ef + 8ef5726 commit 950c0d7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ def read(fname):
3434
install_requires=[
3535
"attrs>=19.0",
3636
"filelock>=3.0",
37-
"pytest>=4.6",
37+
'pytest>=4.6; python_version>="3.5" and python_version<"3.10"',
38+
'pytest>=6.2; python_version>="3.10"',
3839
'mypy>=0.500; python_version<"3.8"',
3940
'mypy>=0.700; python_version>="3.8" and python_version<"3.9"',
4041
'mypy>=0.780; python_version>="3.9"',

0 commit comments

Comments
 (0)