Skip to content

Commit 60049c8

Browse files
authoredJan 30, 2023
Upgrade pip to fix failing CI build (#216)
The CI build was failing because pip had an outdated list of available wheels for installation. Since it couldn't find a match, it was trying to build a package from source, which requires the rust compiler, which in turn isn't present on some of the docker images. By updating pip we get the updated list of available wheels, thereby allowing us to bypass source building and the need for the rust compiler entirely.
1 parent 9b60963 commit 60049c8

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed
 

‎.circleci/config.yml

+1
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ jobs:
6060
- run:
6161
name: install requirements
6262
command: |
63+
pip install --upgrade pip
6364
pip install -r test-requirements.txt;
6465
pip install -r test-filesource-optional-requirements.txt;
6566
pip install -r consul-requirements.txt;

0 commit comments

Comments
 (0)