diff --git a/bindings/python/requirements.txt b/bindings/python/requirements.txt index 31e7edf8..1c610682 100644 --- a/bindings/python/requirements.txt +++ b/bindings/python/requirements.txt @@ -1,5 +1,5 @@ # Apache License 2.0 -numpy>=1.17.4,<2.0.0 +numpy~=2.0 open-space-toolkit-core~=3.0 diff --git a/docker/jupyter/Dockerfile b/docker/jupyter/Dockerfile index 329f0f18..210dcf15 100644 --- a/docker/jupyter/Dockerfile +++ b/docker/jupyter/Dockerfile @@ -18,7 +18,7 @@ RUN apt-get update \ && apt-get install -y curl \ && rm -rf /var/lib/apt/lists/* -RUN pip install --quiet "numpy>=1.17.4,<2.0.0" "pandas" "plotly" "ipywidgets>=7.6" "ipympl>=0.9.0" +RUN pip install --quiet "numpy~=2.0" "pandas" "plotly" "ipywidgets>=7.6" "ipympl>=0.9.0" # Install JupyterLab extensions diff --git a/docker/release/Dockerfile b/docker/release/Dockerfile index 4fce5643..6e6269d5 100644 --- a/docker/release/Dockerfile +++ b/docker/release/Dockerfile @@ -49,7 +49,7 @@ FROM python:${PYTHON_TEST_VERSION}-slim as python-release LABEL maintainer="lucas@loftorbital.com" -RUN pip install ipython "numpy>=1.17.4,<2.0.0" +RUN pip install ipython "numpy~=2.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