Skip to content

Commit

Permalink
pin numpy to <1.25 on docker build
Browse files Browse the repository at this point in the history
  • Loading branch information
timmysilv committed Oct 19, 2023
1 parent 32a15ac commit 5fc84f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/pennylane.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ ENV PATH="/opt/venv/bin:$PATH"
WORKDIR /opt/pennylane
COPY . .
RUN git submodule update --init --recursive
RUN pip install wheel && pip install -r requirements.txt
RUN pip install wheel && pip install "numpy<1.25" -r requirements.txt
RUN python3 setup.py install
RUN pip install pytest pytest-cov pytest-mock flaky
RUN pip install -i https://test.pypi.org/simple/ pennylane-lightning --pre --upgrade
Expand Down

0 comments on commit 5fc84f7

Please sign in to comment.