From 8e8aa4f49d7b452d5080d00ab04c29720c64fb4d Mon Sep 17 00:00:00 2001 From: Martin Utz <martin.utz@baw.de> Date: Wed, 25 Jan 2023 16:02:52 +0100 Subject: [PATCH] Fix the python README --- python/README.md | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/python/README.md b/python/README.md index 2f44dbb1ce..0b255bd368 100644 --- a/python/README.md +++ b/python/README.md @@ -23,12 +23,12 @@ this documentation in the future. Checkout the `master` branch of the Dune core modules and DuMu<sup>x</sup> ``` -git clone https://gitlab.dune-project.org/core/dune-common -git clone https://gitlab.dune-project.org/core/dune-geometry -git clone https://gitlab.dune-project.org/core/dune-grid -git clone https://gitlab.dune-project.org/core/dune-localfunctions -git clone https://gitlab.dune-project.org/core/dune-istl -git clone https://git.iws.uni-stuttgart.de/dumux-repositories/dumux +git clone https://gitlab.dune-project.org/core/dune-common.git +git clone https://gitlab.dune-project.org/core/dune-geometry.git +git clone https://gitlab.dune-project.org/core/dune-grid.git +git clone https://gitlab.dune-project.org/core/dune-localfunctions.git +git clone https://gitlab.dune-project.org/core/dune-istl.git +git clone https://git.iws.uni-stuttgart.de/dumux-repositories/dumux.git ``` Create and activate a new virtual environment in which the @@ -54,12 +54,12 @@ this documentation in the future. Checkout the `releases/2.8` branch of the Dune core modules and DuMu<sup>x</sup> 3.5 ``` -git clone -b releases/2.8 https://gitlab.dune-project.org/core/dune-common -git clone -b releases/2.8 https://gitlab.dune-project.org/core/dune-geometry -git clone -b releases/2.8 https://gitlab.dune-project.org/core/dune-grid -git clone -b releases/2.8 https://gitlab.dune-project.org/core/dune-localfunctions -git clone -b releases/2.8 https://gitlab.dune-project.org/core/dune-istl -git clone -b releases/3.5 https://git.iws.uni-stuttgart.de/dumux-repositories/dumux +git clone -b releases/2.8 https://gitlab.dune-project.org/core/dune-common.git +git clone -b releases/2.8 https://gitlab.dune-project.org/core/dune-geometry.git +git clone -b releases/2.8 https://gitlab.dune-project.org/core/dune-grid.git +git clone -b releases/2.8 https://gitlab.dune-project.org/core/dune-localfunctions.git +git clone -b releases/2.8 https://gitlab.dune-project.org/core/dune-istl.git +git clone -b releases/3.5 https://git.iws.uni-stuttgart.de/dumux-repositories/dumux.git cp dumux/cmake.opts . ``` @@ -92,7 +92,7 @@ Replace the path with the path to the MPI library on your system. Run your first DuMu<sup>x</sup> Python test ``` -python3 dumux/test/python/test_py_gridgeometry.py +python3 dumux/test/python/test_gridgeometry.py ``` The Python bindings are based on just-in-time compilation of C++ code, -- GitLab