Skip to content

Commit 01b0c12

Browse files
authored
Update pyquil dependency and remove workaround pinning of quil (#6763)
* Unpin the quil package The latest release quil-0.13.1 includes binary wheels. Wheels were omitted unintentionally before due to a CI error at the quil project. * Update to pyquil>=4.14.3 as it requires good qcs-sdk-python and remove thus unnecessary version spec for qcs-sdk-python. Fixes: #6754
1 parent e8e53da commit 01b0c12

File tree

2 files changed

+3
-11
lines changed

2 files changed

+3
-11
lines changed

Dockerfile

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,8 @@ RUN rm -f /usr/bin/python \
1919
&& ln -s /usr/bin/python3 /usr/bin/python
2020
#cirq stable image
2121
FROM cirq_base AS cirq_stable
22-
# TODO: #6754 - adjust or remove the quil pin
23-
RUN pip3 install cirq "quil<0.13.0"
22+
RUN pip3 install cirq
2423

2524
##cirq pre_release image
2625
FROM cirq_base AS cirq_pre_release
27-
# TODO: #6754 - adjust or remove the quil pin
28-
RUN pip3 install cirq~=1.0.dev "quil<0.13.0"
26+
RUN pip3 install cirq~=1.0.dev

cirq-rigetti/requirements.txt

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1 @@
1-
pyquil>=4.11.0,<5.0.0
2-
3-
# TODO: #6754 - adjust or remove if binary wheels are provided again
4-
quil<0.13.0
5-
6-
# TODO - remove once pyquil requires qcs-sdk-python >= 0.20.1
7-
qcs-sdk-python>=0.20.1
1+
pyquil>=4.14.3,<5.0.0

0 commit comments

Comments
 (0)