diff --git a/docs/howto/develop/setup.md b/docs/howto/develop/setup.md index 01c2120c1d9e0ee1de5e8639783ad9457ecca0d6..763b2d31dac8182416c15521368336e8bf1a2f43 100644 --- a/docs/howto/develop/setup.md +++ b/docs/howto/develop/setup.md @@ -59,7 +59,7 @@ git submodule update --init ### Set up a Python environment -The NOMAD code currently requires at least Python 3.9, but we recommend using Python 3.11. You should work in a Python virtual environment. +The NOMAD code currently requires Python 3.11. You should work in a Python virtual environment. #### Pyenv @@ -85,7 +85,7 @@ If you are a conda user, there is an equivalent, but you have to install `pip` a right Python version while creating the environment. ```shell -conda create --name nomad_env pip python=3.9 +conda create --name nomad_env pip python=3.11 conda activate nomad_env ```