Skip to content

Commit

Permalink
fix: add extra locations where numpy is specified
Browse files Browse the repository at this point in the history
  • Loading branch information
apaletta3 committed Jun 19, 2024
1 parent be401b0 commit 505e4c8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docker/jupyter/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ RUN apt-get update \
&& apt-get install -y curl \
&& rm -rf /var/lib/apt/lists/*

RUN pip install --quiet "numpy" "pandas" "plotly" "ipywidgets>=7.6" "ipympl>=0.9.0"
RUN pip install --quiet "numpy>=1.17.4,<2.0.0" "pandas" "plotly" "ipywidgets>=7.6" "ipympl>=0.9.0"

# Install JupyterLab extensions

Expand Down
2 changes: 1 addition & 1 deletion docker/release/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ FROM python:${PYTHON_TEST_VERSION}-slim as python-release

LABEL maintainer="[email protected]"

RUN pip install ipython numpy
RUN pip install ipython "numpy>=1.17.4,<2.0.0"

COPY --from=python-builder /usr/local/lib/python${PYTHON_TEST_VERSION}/site-packages/ostk /usr/local/lib/python${PYTHON_TEST_VERSION}/site-packages/ostk

Expand Down

0 comments on commit 505e4c8

Please sign in to comment.