From 9d820369d9cd86c6fd6bb538ddf581bafc6251a7 Mon Sep 17 00:00:00 2001 From: Lars Bilke <lars.bilke@ufz.de> Date: Mon, 13 Mar 2023 16:05:21 +0100 Subject: [PATCH] Removed OGS_USE_PYTHON in remaining places. --- .github/workflows/msvc-code-analysis.yml | 2 +- web/content/docs/userguide/features/python_bc.md | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/msvc-code-analysis.yml b/.github/workflows/msvc-code-analysis.yml index 158fcf1d056..66b47d479f3 100644 --- a/.github/workflows/msvc-code-analysis.yml +++ b/.github/workflows/msvc-code-analysis.yml @@ -15,7 +15,7 @@ jobs: uses: actions/checkout@v2 - name: Configure CMake - run: cmake -B ${{ env.build }} -DCMAKE_BUILD_TYPE=${{ env.config }} -DOGS_BUILD_PROCESS_TH2M=OFF -DOGS_USE_PYTHON=OFF -DOGS_USE_UNITY_BUILDS=OFF -DOGS_BUILD_TESTING=OFF -DOGS_ENABLE_ELEMENT_PRISM=OFF -DOGS_ENABLE_ELEMENT_PYRAMID=OFF -DOGS_MAX_ELEMENT_DIM=2 + run: cmake -B ${{ env.build }} -DCMAKE_BUILD_TYPE=${{ env.config }} -DOGS_BUILD_PROCESS_TH2M=OFF -DOGS_USE_UNITY_BUILDS=OFF -DOGS_BUILD_TESTING=OFF -DOGS_ENABLE_ELEMENT_PRISM=OFF -DOGS_ENABLE_ELEMENT_PYRAMID=OFF -DOGS_MAX_ELEMENT_DIM=2 # Build is not required unless generated source files are used # - name: Build CMake diff --git a/web/content/docs/userguide/features/python_bc.md b/web/content/docs/userguide/features/python_bc.md index 9e5dad207af..0a35de70dea 100644 --- a/web/content/docs/userguide/features/python_bc.md +++ b/web/content/docs/userguide/features/python_bc.md @@ -25,7 +25,6 @@ For example it can be used to insert time series data or measurements as boundar ## Prerequisites -OpenGeoSys has to be compiled with `-DOGS_USE_PYTHON` enabled. For more details about compiling OpenGeoSys, see [developer guide - build configuration](/docs/devguide/getting-started/build-configuration/). This feature requires basic understanding of classes in Python. Information about them and their syntax can be found in [official Python documentation](https://docs.python.org/3/tutorial/classes.html). ## Using python boundary condition in project file -- GitLab