Skip to content

Commit

Permalink
Update python version to 3.10 in the documentaion
Browse files Browse the repository at this point in the history
Since the last pypsa update to 0.26.2, eTraGo needs python>=3.10
  • Loading branch information
ClaraBuettner committed Feb 28, 2024
1 parent 9168b9b commit 5e9672d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ you create a virtual environment (where you like it) and activate it:

.. code-block:: bash
$ virtualenv venv --clear -p python3.8
$ virtualenv venv --clear -p python3.10
$ source venv/bin/activate
$ cd venv
Expand Down
2 changes: 1 addition & 1 deletion doc/developer_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Installation for Developers

.. code-block:: bash
$ virtualenv --clear -p python3.8 etrago``
$ virtualenv --clear -p python3.10 etrago``
$ cd etrago/
$ source bin/activate
Expand Down
6 changes: 3 additions & 3 deletions doc/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ you create a virtual environment (where you like it) and activate it:

.. code-block:: bash
$ virtualenv venv --clear -p python3.8
$ virtualenv venv --clear -p python3.10
$ source venv/bin/activate
$ cd venv
Expand All @@ -40,14 +40,14 @@ Windows or Mac OSX users
========================

For Windows and/or Mac OSX user we highly recommend to install and use Anaconda
for your Python3 installation. First install Conda including python 3.8 or
for your Python3 installation. First install Conda including python 3.10 or
higher version from https://www.anaconda.com/download/ and open an anaconda
prompt as administrator and run:

.. code-block:: bash
$ conda config --add channels conda-forge
$ conda create -n etrago_env python=3.8
$ conda create -n etrago_env python=3.10
$ conda activate etrago_env
$ pip install eTraGo
Expand Down

0 comments on commit 5e9672d

Please sign in to comment.