Skip to content

Commit 4854612

Browse files
committed
MAINT: pin pip to 21.1.1
There is a regression for our case in pip's dependency resolver in v21.2.1 - pin to older version until resolved.
1 parent 4fa0145 commit 4854612

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.circleci/config.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ jobs:
2020
command: |
2121
python3 -m venv venv
2222
source venv/bin/activate
23-
pip install --upgrade pip wheel setuptools
23+
pip install pip==21.1.1
24+
pip install --upgrade wheel setuptools
2425
pip install -r site/requirements.txt -r requirements.txt
2526
2627
- restore_cache:

0 commit comments

Comments
 (0)