Skip to content

Commit bff1dfe

Browse files
feat(testing): bump deps for Python > 3.8
New versions are not compatible with Python 3.8, so keep the old ones for this specfic version.
1 parent c321058 commit bff1dfe

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

constraints.txt

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
# Consistent testing environment.
22
black==22.10.0
3-
coverage==6.3.2
3+
coverage==6.3.2; python_version=="3.8"
4+
coverage==7.10.7; python_version > "3.8"
45
flake8==5.0.2
56
objgraph==3.5.0
6-
pytest==6.2.5
7-
pytest-cov==3.0.0
8-
pytest-timeout==2.2.0
7+
pytest==6.2.5; python_version=="3.8"
8+
pytest==8.4.2; python_version > "3.8"
9+
pytest-cov==3.0.0; python_version=="3.8"
10+
pytest-cov==7.0.0; python_version > "3.8"
11+
pytest-timeout==2.2.0; python_version=="3.8"
12+
pytest-timeout==2.4.0; python_version > "3.8"

0 commit comments

Comments
 (0)