diff options
author | Ralf Gommers <ralf.gommers@gmail.com> | 2019-03-28 21:52:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-28 21:52:50 +0100 |
commit | fd105d14b7b0fbddae21c795548b65c33696100a (patch) | |
tree | c3aef79eee056d4bf96ecf49297ec139ef79caac | |
parent | 39f0dbff0597af181c11cb3e50d0f055591f7952 (diff) | |
parent | 43972706d283f2ce81b0a32f32689a5f021205fe (diff) | |
download | numpy-fd105d14b7b0fbddae21c795548b65c33696100a.tar.gz |
Merge pull request #13206 from mattip/pin-sphinx
BUILD: pin sphinx to 1.8.5
-rw-r--r-- | .circleci/config.yml | 2 | ||||
-rw-r--r-- | azure-pipelines.yml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index cc01e8851..2a3d82677 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -20,7 +20,7 @@ jobs: command: | python3 -m venv venv . venv/bin/activate - pip install cython sphinx>=1.8.3 matplotlib + pip install cython sphinx==1.8.5 matplotlib sudo apt-get update sudo apt-get install -y graphviz texlive-fonts-recommended texlive-latex-recommended texlive-latex-extra texlive-generic-extra latexmk texlive-xetex diff --git a/azure-pipelines.yml b/azure-pipelines.yml index d65d1e41f..722823b7f 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -81,7 +81,7 @@ jobs: displayName: 'install pre-built openblas' - script: python -m pip install --upgrade pip setuptools wheel displayName: 'Install tools' - - script: python -m pip install cython nose pytz pytest pickle5 vulture docutils sphinx>=1.8.3 numpydoc matplotlib + - script: python -m pip install cython nose pytz pytest pickle5 vulture docutils sphinx==1.8.5 numpydoc matplotlib 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' |