From ad0d3ddbaa5875af901358db92b38bf887fefb6c Mon Sep 17 00:00:00 2001 From: emanuel-schmid Date: Wed, 11 Sep 2024 15:06:58 +0200 Subject: [PATCH] doc: installation standard python 3.11 --- doc/guide/install.rst | 4 ++-- script/jenkins/install_env.sh | 2 +- setup.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/guide/install.rst b/doc/guide/install.rst index c30fefd055..71c26c556a 100644 --- a/doc/guide/install.rst +++ b/doc/guide/install.rst @@ -161,7 +161,7 @@ For advanced Python users or developers of CLIMADA, we recommed cloning the CLIM .. code-block:: shell - mamba create -n climada_env "python=3.9.*" + mamba create -n climada_env "python=3.11.*" .. hint:: @@ -177,7 +177,7 @@ For advanced Python users or developers of CLIMADA, we recommed cloning the CLIM :width: 60% * - **Supported Version** - - ``3.9`` + - ``3.11`` * - Allowed Versions - ``3.9``, ``3.10``, ``3.11`` diff --git a/script/jenkins/install_env.sh b/script/jenkins/install_env.sh index a06da82868..998924fa36 100644 --- a/script/jenkins/install_env.sh +++ b/script/jenkins/install_env.sh @@ -1,7 +1,7 @@ #!/bin/bash -e mamba remove --name climada_env --all -mamba create -n climada_env python=3.9 +mamba create -n climada_env python=3.11 mamba env update -n climada_env -f requirements/env_climada.yml source activate climada_env diff --git a/setup.py b/setup.py index a820791943..7ff663e946 100644 --- a/setup.py +++ b/setup.py @@ -49,7 +49,7 @@ classifiers=[ 'Development Status :: 4 - Beta', - 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3', 'Topic :: Scientific/Engineering :: Atmospheric Science', 'Topic :: Scientific/Engineering :: GIS', 'Topic :: Scientific/Engineering :: Mathematics',