diff --git a/.github/workflows/main-workflow-template.yml b/.github/workflows/main-workflow-template.yml index 20ad1223..d9257ffb 100644 --- a/.github/workflows/main-workflow-template.yml +++ b/.github/workflows/main-workflow-template.yml @@ -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: | diff --git a/.github/workflows/main-workflow.yml b/.github/workflows/main-workflow.yml index 38f9ab1e..9e91780d 100644 --- a/.github/workflows/main-workflow.yml +++ b/.github/workflows/main-workflow.yml @@ -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: @@ -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: @@ -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: @@ -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: @@ -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 @@ -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 @@ -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 @@ -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: @@ -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: @@ -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: @@ -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: @@ -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: @@ -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: @@ -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: @@ -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: @@ -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: @@ -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 diff --git a/python-minimal/Dockerfile b/python-minimal/Dockerfile index 0fd7cfdf..00abdae3 100644 --- a/python-minimal/Dockerfile +++ b/python-minimal/Dockerfile @@ -3,7 +3,7 @@ FROM $BASE_IMAGE LABEL maintainer="InseeFrLab " -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