diff options
| author | Charles Harris <charlesr.harris@gmail.com> | 2022-03-25 09:27:50 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-25 09:27:50 -0600 |
| commit | 4115eead62a382a32afdb0450c54e0249db02915 (patch) | |
| tree | 0cf718787a6c80724f7df7eafc72ddb8cd4b86fc | |
| parent | 2c89e154c5130de2c49c4af7bf8ca83779861ae8 (diff) | |
| parent | f877294b3201eb94369f7271c6512b5863f45b69 (diff) | |
| download | numpy-4115eead62a382a32afdb0450c54e0249db02915.tar.gz | |
Merge pull request #21241 from mattip/update-sphinx
MAINT: use doc_requirements.txt in azure build
| -rw-r--r-- | azure-pipelines.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 9e65f9a20..be0f0a214 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -173,7 +173,8 @@ stages: displayName: 'Install tools' - script: | python -m pip install -r test_requirements.txt - python -m pip install vulture docutils sphinx==2.2.0 numpydoc + # 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' |
