File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -76,12 +76,14 @@ geth_steps: &geth_steps
7676 - cache-{{ .Environment.CIRCLE_JOB }}-{{ checksum "setup.py" }}-{{ checksum "tox.ini" }}
7777 - run :
7878 name : install dependencies
79- command : pip install --user tox
79+ command : |
80+ pip install --upgrade pip
81+ pip install --user tox
8082 - run :
8183 name : build geth if missing
8284 command : |
8385 mkdir -p $HOME/.ethash
84- pip install --user py-geth>=<< pipeline.parameters.pygeth_version >>
86+ pip install --user " py-geth>=<< pipeline.parameters.pygeth_version >>"
8587 export GOROOT=/usr/local/go
8688 echo << pipeline.parameters.geth_version >>
8789 export GETH_BINARY="$HOME/.py-geth/geth-<< pipeline.parameters.geth_version >>/bin/geth"
Original file line number Diff line number Diff line change 1+ Update ``geth_steps `` in CircleCI builds to pip install the proper version of ``py-geth ``.gs
2+
You can’t perform that action at this time.
0 commit comments