diff options
author | mattip <matti.picus@gmail.com> | 2022-03-25 10:42:18 +0300 |
---|---|---|
committer | mattip <matti.picus@gmail.com> | 2022-03-25 10:42:18 +0300 |
commit | f877294b3201eb94369f7271c6512b5863f45b69 (patch) | |
tree | 0cf718787a6c80724f7df7eafc72ddb8cd4b86fc | |
parent | 5978ea96eec8c290ceafe8f55f3458c0cfb237c5 (diff) | |
download | numpy-f877294b3201eb94369f7271c6512b5863f45b69.tar.gz |
MAINT: specify sphinx, numpydoc versions instead of using doc_requirements.txt
-rw-r--r-- | azure-pipelines.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index d7f00f0a0..be0f0a214 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -173,8 +173,8 @@ stages: displayName: 'Install tools' - script: | python -m pip install -r test_requirements.txt - python -m pip install vulture - python -m pip install -r doc_requirements.txt + # Don't use doc_requirements.txt since that messes up tests + python -m pip install vulture sphinx==4.2.0 numpydoc==1.2.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' |