Skip to content

Commit

Permalink
fix: ping numpy and pandas versions in docker
Browse files Browse the repository at this point in the history
Signed-off-by: ThibaultFy <[email protected]>
  • Loading branch information
ThibaultFy committed Jun 18, 2024
1 parent ce37f41 commit 633b972
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
FROM python:3.9-slim

# install dependencies
RUN pip3 install pandas numpy substratools
RUN pip3 install 'pandas<2.0' 'numpy<2.0' substratools

# add your algorithm script to docker image
ADD federated_analytics_functions.py .
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
FROM python:3.9-slim

# install dependencies
RUN pip3 install pandas numpy substratools
RUN pip3 install 'pandas<2.0' 'numpy<2.0' substratools

# add your algorithm script to docker image
ADD federated_analytics_functions.py .
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
FROM python:3.9-slim

# install dependencies
RUN pip3 install pandas numpy substratools
RUN pip3 install 'pandas<2.0' 'numpy<2.0' substratools

# add your algorithm script to docker image
ADD federated_analytics_functions.py .
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
matplotlib==3.6.3
scikit-learn==1.3.1
pandas==2.1.4
pandas==1.5.3
substra
substratools
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
FROM python:3.9-slim

# install dependencies
RUN pip3 install pandas numpy 'scikit-learn==1.3.1' substratools
RUN pip3 install 'pandas<2.0' 'numpy<2.0' 'scikit-learn==1.3.1' substratools

# add your function script to docker image
ADD titanic_function_rf.py .
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
FROM python:3.9-slim

# install dependencies
RUN pip3 install pandas numpy 'scikit-learn==1.3.1' substratools
RUN pip3 install 'pandas<2.0' 'numpy<2.0' 'scikit-learn==1.3.1' substratools

# add your function script to docker image
ADD titanic_function_rf.py .
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
FROM python:3.9-slim

# install dependencies
RUN pip3 install pandas numpy 'scikit-learn==1.1.1' substratools
RUN pip3 install 'pandas<2.0' 'numpy<2.0' 'scikit-learn==1.1.1' substratools

# add your metrics script to docker image
ADD titanic_metrics.py .
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
matplotlib==3.6.3
scikit-learn==1.3.1
pandas==2.1.4
pandas==1.5.3
substra
substratools
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
matplotlib==3.6.3
numpy==1.24.3
pandas==2.1.4
pandas==1.5.3
scikit-learn==1.3.1
substrafl
torch==2.0.1
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
matplotlib==3.6.3
scikit-learn==1.3.1
numpy==1.24.3
pandas==2.1.4
pandas==1.5.3
substrafl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
matplotlib==3.6.3
numpy==1.24.3
pandas==2.1.4
pandas==1.5.3
scikit-learn==1.3.1
substrafl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
matplotlib==3.6.3
numpy==1.24.3
pandas==2.1.4
pandas==1.5.3
scikit-learn==1.3.1
substrafl
torch==2.0.1
Expand Down

0 comments on commit 633b972

Please sign in to comment.