summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2022-10-29 16:57:55 -0400
committerJason R. Coombs <jaraco@jaraco.com>2022-10-29 16:57:55 -0400
commit01ce88bbefdaa97ee36e5d2e71b703203a584be0 (patch)
tree79947e1011f33a114fa0ffaa3b293cffd8c49495
parente414cdf6542427db75e2b32b00a02825ad897a35 (diff)
downloadpython-setuptools-git-01ce88bbefdaa97ee36e5d2e71b703203a584be0.tar.gz
Pin pytest to <7.2. Workaround for pypa/distutils#186.
-rw-r--r--tox.ini3
1 files changed, 2 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index c23177c1..d8d46d3f 100644
--- a/tox.ini
+++ b/tox.ini
@@ -5,7 +5,8 @@ toxworkdir={env:TOX_WORK_DIR:.tox}
[testenv]
deps =
- pytest
+ # < 7.2 due to pypa/distutils#186
+ pytest < 7.2
pytest-flake8
# workaround for tholo/pytest-flake8#87