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

chore: release 0.39.0 #438

Merged
merged 8 commits into from
Sep 16, 2024
32 changes: 32 additions & 0 deletions docs/source/additional/releases.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,38 @@ components: # for table headers
- substra-tests

releases:
- version: 0.39.0
components:
substrafl:
version: 0.47.0
link: https://github.com/Substra/substrafl/releases/tag/0.47.0
substra:
version: 0.54.0
link: https://github.com/Substra/substra/releases/tag/0.54.0
substra-tools:
version: 0.22.0
link: https://github.com/Substra/substra-tools/releases/tag/0.22.0
substra-backend:
version: 0.48.0
link: https://github.com/Substra/substra-backend/releases/tag/0.48.0
helm:
version: 26.9.1
link: https://artifacthub.io/packages/helm/substra/substra-backend/26.9.1
orchestrator:
version: 0.43.0
link: https://github.com/Substra/orchestrator/releases/tag/0.43.0
helm:
version: 8.7.6
link: https://artifacthub.io/packages/helm/substra/orchestrator/8.7.6
substra-frontend:
version: 0.52.0
link: https://github.com/Substra/substra-frontend/releases/tag/0.52.0
helm:
version: 1.2.2
link: https://artifacthub.io/packages/helm/substra/substra-frontend/1.2.2
substra-tests:
version: 0.52.0
link: https://github.com/Substra/substra-tests/releases/tag/0.52.0
- version: 0.38.0
components:
substrafl:
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<2.0' 'numpy<2.0' 'substratools==0.22.0a2'
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<2.0' 'numpy<2.0' 'substratools==0.22.0a2'
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<2.0' 'numpy<2.0' 'substratools==0.22.0a2'
RUN pip3 install pandas 'numpy<2.0' 'scikit-learn==1.5.0' substratools
SdgJlbl marked this conversation as resolved.
Show resolved Hide resolved

# 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.12-slim

# install dependencies
RUN pip3 install pandas 'numpy<2.0' 'scikit-learn==1.5.0' 'substratools==0.22.0a2'
RUN pip3 install pandas 'numpy<2.0' 'scikit-learn==1.5.0' 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.12-slim

# install dependencies
RUN pip3 install pandas 'numpy<2.0' 'scikit-learn==1.5.0' 'substratools==0.22.0a2'
RUN pip3 install pandas 'numpy<2.0' 'scikit-learn==1.5.0' 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.12-slim

# install dependencies
RUN pip3 install pandas 'numpy<2.0' 'scikit-learn==1.5.0' 'substratools==0.22.0a2'
RUN pip3 install pandas 'numpy<2.0' 'scikit-learn==1.5.0' substratools

# add your metrics script to docker image
ADD titanic_metrics.py .
Expand Down
Loading