Skip to content

Commit ebbb6a9

Browse files
committed
Workaround ancient setuptools in venv
1 parent 06a1a1d commit ebbb6a9

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.circleci/config.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ jobs:
1414
command: |
1515
python3 -m venv venv
1616
. venv/bin/activate
17+
# Workaround for ancient setuptools in venv
18+
pip install -U setuptools
1719
pip install -r requirements.txt
1820
- run:
1921
name: Run docs build
@@ -33,6 +35,8 @@ jobs:
3335
command: |
3436
python3 -m venv venv
3537
. venv/bin/activate
38+
# Workaround for ancient setuptools in venv
39+
pip install -U setuptools
3640
pip install -r requirements.txt
3741
- run:
3842
name: Run docs build

0 commit comments

Comments
 (0)