Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Qiskit 2.0 #1572

Draft
wants to merge 4 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions Dockerfile-ray-node
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ RUN microdnf install -y \
python3.11-devel-3.11.9 \
wget-1.21.1
RUN microdnf clean all

# Custom part to install from source Qiskit
RUN microdnf install -y git
RUN microdnf install -y gcc
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
ENV PATH="/root/.cargo/bin:${PATH}"

RUN ln -s /usr/bin/python3.11 /usr/local/bin/python3 && \
ln -s /usr/bin/python3.11 /usr/local/bin/python &&\
ln -s /usr/bin/pip3.11 /usr/local/bin/pip3 &&\
Expand Down
2 changes: 1 addition & 1 deletion client/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ray[default,data]>=2.30.0, <2.35.0
requests>=2.32.2, <3
importlib-metadata>=5.2.0, <9
qiskit>=1.0.2
qiskit @ git+https://github.com/Qiskit/qiskit.git@main
qiskit-ibm-runtime>=0.29.0
# Make sure ray node and notebook node have the same version of cloudpickle
cloudpickle==2.2.1
Expand Down