Skip to content

Commit dac2406

Browse files
committed
ci: update pip
1 parent 6578242 commit dac2406

File tree

3 files changed

+7
-0
lines changed

3 files changed

+7
-0
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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

Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ RUN apt-get update && apt-get -yq dist-upgrade && \
2525
# install ipython
2626
RUN pip install --no-cache-dir ipython
2727

28+
# upgrade pip
29+
RUN pip install --upgrade pip
30+
2831
# install pyquil
2932
RUN pip install pyquil==$pyquil_version
3033

Dockerfile.test

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ RUN apt-get update && apt-get -yq dist-upgrade && \
2323
# install ipython
2424
RUN pip install --no-cache-dir ipython
2525

26+
# upgrade pip
27+
RUN pip install --upgrade pip
28+
2629
# install pyquil from local wheel
2730
COPY ./wheels /src/wheels
2831
RUN pip install /src/wheels/pyquil-*.whl

0 commit comments

Comments
 (0)