summaryrefslogtreecommitdiff
path: root/azure-pipelines.yml
diff options
context:
space:
mode:
authorJarrod Millman <jarrod.millman@gmail.com>2022-06-24 07:30:23 -0700
committerJarrod Millman <jarrod.millman@gmail.com>2022-06-24 07:43:41 -0700
commit6b4449770e0751006431d130323bcc3b27841290 (patch)
tree55323581789d1af73817efc25d524a0aa490acc5 /azure-pipelines.yml
parent99a4fac1ddbc74c822c763df333e0013cbbbe5e4 (diff)
downloadnumpy-6b4449770e0751006431d130323bcc3b27841290.tar.gz
Require sphinx 4.3+
Diffstat (limited to 'azure-pipelines.yml')
-rw-r--r--azure-pipelines.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index 4a47194cb..1c3b06ffb 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -176,7 +176,7 @@ stages:
- script: |
python -m pip install -r test_requirements.txt
# Don't use doc_requirements.txt since that messes up tests
- python -m pip install vulture sphinx==5.0.1 numpydoc==1.4.0
+ python -m pip install vulture sphinx==4.3.0 numpydoc==1.4.0
displayName: 'Install dependencies; some are optional to avoid test skips'
- script: /bin/bash -c "! vulture . --min-confidence 100 --exclude doc/,numpy/distutils/ | grep 'unreachable'"
displayName: 'Check for unreachable code paths in Python modules'