Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/main-workflow-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.13'
python-version: '3.14'

- id: set-matrix
run: |
Expand Down
34 changes: 17 additions & 17 deletions .github/workflows/main-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
image: python-minimal
context: python-minimal
base_image: base
python_version_1: 3.13.11
python_version_1: 3.14.2
python_version_2: 3.12.12
secrets: inherit
python-datascience:
Expand All @@ -31,7 +31,7 @@ jobs:
image: python-datascience
context: python-datascience
base_image: python-minimal
python_version_1: 3.13.11
python_version_1: 3.14.2
python_version_2: 3.12.12
secrets: inherit
r-minimal:
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
image: jupyter-python
context: jupyter
base_image: python-datascience
python_version_1: 3.13.11
python_version_1: 3.14.2
python_version_2: 3.12.12
secrets: inherit
vscode-python:
Expand All @@ -71,7 +71,7 @@ jobs:
image: vscode-python
context: vscode
base_image: python-datascience
python_version_1: 3.13.11
python_version_1: 3.14.2
python_version_2: 3.12.12
secrets: inherit
pyspark:
Expand All @@ -81,7 +81,7 @@ jobs:
image: pyspark
context: spark
base_image: python-minimal
python_version_1: 3.13.11
python_version_1: 3.14.2
python_version_2: 3.12.12
spark_version: 4.0.1
build_gpu: false
Expand All @@ -93,7 +93,7 @@ jobs:
image: jupyter-pyspark
context: jupyter
base_image: pyspark
python_version_1: 3.13.11
python_version_1: 3.14.2
python_version_2: 3.12.12
spark_version: 4.0.1
build_gpu: false
Expand All @@ -105,7 +105,7 @@ jobs:
image: vscode-pyspark
context: vscode
base_image: pyspark
python_version_1: 3.13.11
python_version_1: 3.14.2
python_version_2: 3.12.12
spark_version: 4.0.1
build_gpu: false
Expand All @@ -117,7 +117,7 @@ jobs:
image: python-pytorch
context: python-pytorch
base_image: python-minimal
python_version_1: 3.13.11
python_version_1: 3.14.2
python_version_2: 3.12.12
secrets: inherit
jupyter-pytorch:
Expand All @@ -127,7 +127,7 @@ jobs:
image: jupyter-pytorch
context: jupyter
base_image: python-pytorch
python_version_1: 3.13.11
python_version_1: 3.14.2
python_version_2: 3.12.12
secrets: inherit
vscode-pytorch:
Expand All @@ -137,7 +137,7 @@ jobs:
image: vscode-pytorch
context: vscode
base_image: python-pytorch
python_version_1: 3.13.11
python_version_1: 3.14.2
python_version_2: 3.12.12
secrets: inherit
python-tensorflow:
Expand All @@ -147,7 +147,7 @@ jobs:
image: python-tensorflow
context: python-tensorflow
base_image: python-minimal
python_version_1: 3.13.11
python_version_1: 3.14.2
python_version_2: 3.12.12
secrets: inherit
jupyter-tensorflow:
Expand All @@ -157,7 +157,7 @@ jobs:
image: jupyter-tensorflow
context: jupyter
base_image: python-tensorflow
python_version_1: 3.13.11
python_version_1: 3.14.2
python_version_2: 3.12.12
secrets: inherit
vscode-tensorflow:
Expand All @@ -167,7 +167,7 @@ jobs:
image: vscode-tensorflow
context: vscode
base_image: python-tensorflow
python_version_1: 3.13.11
python_version_1: 3.14.2
python_version_2: 3.12.12
secrets: inherit
rstudio:
Expand Down Expand Up @@ -212,7 +212,7 @@ jobs:
context: r-python-julia
base_image: r-datascience
r_version_1: 4.5.2
python_version_1: 3.13.11
python_version_1: 3.14.2
build_gpu: false
secrets: inherit
vscode-r-python-julia:
Expand All @@ -223,7 +223,7 @@ jobs:
context: vscode
base_image: r-python-julia
r_version_1: 4.5.2
python_version_1: 3.13.11
python_version_1: 3.14.2
build_gpu: false
secrets: inherit
jupyter-r-python-julia:
Expand All @@ -234,7 +234,7 @@ jobs:
context: jupyter
base_image: r-python-julia
r_version_1: 4.5.2
python_version_1: 3.13.11
python_version_1: 3.14.2
build_gpu: false
secrets: inherit
rstudio-r-python-julia:
Expand All @@ -245,6 +245,6 @@ jobs:
context: rstudio
base_image: r-python-julia
r_version_1: 4.5.2
python_version_1: 3.13.11
python_version_1: 3.14.2
build_gpu: false
secrets: inherit
2 changes: 1 addition & 1 deletion python-minimal/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM $BASE_IMAGE

LABEL maintainer="InseeFrLab <innovation@insee.fr>"

ARG PYTHON_VERSION="3.13.11"
ARG PYTHON_VERSION="3.14.2"
ENV PYTHON_VERSION=${PYTHON_VERSION}

# Install Python separately from system installation to avoid conflicts
Expand Down