diff options
author | mattip <matti.picus@gmail.com> | 2020-08-12 23:54:09 +0300 |
---|---|---|
committer | mattip <matti.picus@gmail.com> | 2020-08-14 09:19:09 +0300 |
commit | 19a8a63ea4194b17a42d21f4d263a13092b26566 (patch) | |
tree | fa2476132fa8572a7051a6dc803128a11a4cb2ff /.circleci | |
parent | 3166c0d7646efe9d43cb7b363e58db2cf941a5e6 (diff) | |
download | numpy-19a8a63ea4194b17a42d21f4d263a13092b26566.tar.gz |
rework build to invoke doc_requirements.txt
Diffstat (limited to '.circleci')
-rw-r--r-- | .circleci/config.yml | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index 2a986cba6..d8063e30e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -16,12 +16,11 @@ jobs: - checkout - run: - name: install dependencies + name: create virtual environment, install dependencies command: | python3 -m venv venv ln -s $(which python3) venv/bin/python3.6 . venv/bin/activate - pip install cython sphinx==2.3.1 matplotlib ipython 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 @@ -30,10 +29,9 @@ jobs: command: | . venv/bin/activate pip install --upgrade pip 'setuptools<49.2.0' - pip install cython + pip install -r test_requirements.txt pip install . - pip install scipy - pip install pandas + pip install -r doc_requirements.txt - run: name: create release notes |