diff options
author | Sebastian Berg <sebastian@sipsolutions.net> | 2021-11-17 08:06:39 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-17 08:06:39 -0600 |
commit | dd9685c90be7e8e1a04c9ccd0a7b5397fb7e824b (patch) | |
tree | 38d248b9b8c19aeba92d11df73b26259f240d21f | |
parent | a1b5d443c375f9b63a415027da66f3d729cd59b5 (diff) | |
parent | 909bc36a58b1381ba7687ef2be84d59c068c3ef4 (diff) | |
download | numpy-dd9685c90be7e8e1a04c9ccd0a7b5397fb7e824b.tar.gz |
Merge pull request #20393 from WarrenWeckesser/doc-no-deps
CI: CircleCI: Install numpy after processing doc_requirements.txt
-rw-r--r-- | .circleci/config.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index de7f52f81..182f7e678 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -44,8 +44,8 @@ jobs: . venv/bin/activate pip install --progress-bar=off --upgrade pip 'setuptools<49.2.0' pip install --progress-bar=off -r test_requirements.txt - pip install . pip install --progress-bar=off -r doc_requirements.txt + pip install . - run: name: create release notes |