diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2020-09-14 15:20:34 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-14 15:20:34 -0600 |
commit | 7b7e7fe4936a0cd8b1278ebc3169463e392a486e (patch) | |
tree | a233e07e2587f4141adef10da67d057c6f34bb17 | |
parent | 0a86e4132cb8cdff5414412bbf277274564826e0 (diff) | |
parent | 01996b8439892a12d511652db7d8882d11e2a09f (diff) | |
download | numpy-7b7e7fe4936a0cd8b1278ebc3169463e392a486e.tar.gz |
Merge pull request #17304 from mattip/circleci
BUILD: pin pygments to 2.6.1, 2.7.0 breaks custom NumPyC lexer
-rw-r--r-- | .circleci/config.yml | 13 | ||||
-rw-r--r-- | doc_requirements.txt | 1 |
2 files changed, 7 insertions, 7 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index f4ffb5223..f4536cca5 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -8,7 +8,7 @@ jobs: docker: # CircleCI maintains a library of pre-built images # documented at https://circleci.com/docs/2.0/circleci-images/ - - image: circleci/python:3.6.6 + - image: circleci/python:3.8.4 working_directory: ~/repo @@ -18,20 +18,19 @@ jobs: - run: name: create virtual environment, install dependencies command: | - python3 -m venv venv - ln -s $(which python3) venv/bin/python3.6 - . venv/bin/activate 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 + python3.8 -m venv venv + . venv/bin/activate - run: name: build numpy command: | . venv/bin/activate - pip install --upgrade pip 'setuptools<49.2.0' - pip install -r test_requirements.txt + pip install --progress-bar=off --upgrade pip 'setuptools<49.2.0' + pip install --progress-bar=off -r test_requirements.txt pip install . - pip install -r doc_requirements.txt + pip install --progress-bar=off -r doc_requirements.txt - run: name: create release notes diff --git a/doc_requirements.txt b/doc_requirements.txt index e2694ba12..815aac307 100644 --- a/doc_requirements.txt +++ b/doc_requirements.txt @@ -1,3 +1,4 @@ +pygments==2.6.1 sphinx>=2.2.0,<3.0 ipython scipy |