File tree Expand file tree Collapse file tree 3 files changed +7
-0
lines changed
Expand file tree Collapse file tree 3 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -177,6 +177,7 @@ jobs:
177177 - name : Check wheel installation
178178 run : |
179179 sudo apt update
180+ pip install --upgrade pip
180181 pip wheel . -w wheels
181182 - name : Build and Test
182183 uses : docker/build-push-action@v4
Original file line number Diff line number Diff line change @@ -25,6 +25,9 @@ RUN apt-get update && apt-get -yq dist-upgrade && \
2525# install ipython
2626RUN pip install --no-cache-dir ipython
2727
28+ # upgrade pip
29+ RUN pip install --upgrade pip
30+
2831# install pyquil
2932RUN pip install pyquil==$pyquil_version
3033
Original file line number Diff line number Diff line change @@ -23,6 +23,9 @@ RUN apt-get update && apt-get -yq dist-upgrade && \
2323# install ipython
2424RUN pip install --no-cache-dir ipython
2525
26+ # upgrade pip
27+ RUN pip install --upgrade pip
28+
2629# install pyquil from local wheel
2730COPY ./wheels /src/wheels
2831RUN pip install /src/wheels/pyquil-*.whl
You can’t perform that action at this time.
0 commit comments