diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f4339fc692..980be088b7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -188,7 +188,7 @@ jobs: uses: actions/upload-artifact@v3 with: name: doc-ansys-dpf-core - path: ./docs/build/* + path: ./docs/build/html/* if: always() - name: Publish Documentation log diff --git a/examples/07-python-operators/00-wrapping_numpy_capabilities.py b/examples/07-python-operators/00-wrapping_numpy_capabilities.py index e3623a6924..e5c8a47e24 100644 --- a/examples/07-python-operators/00-wrapping_numpy_capabilities.py +++ b/examples/07-python-operators/00-wrapping_numpy_capabilities.py @@ -49,6 +49,9 @@ from ansys.dpf import core as dpf from ansys.dpf.core import examples +# python plugins are not supported in process +dpf.start_local_server(config=dpf.AvailableServerConfigs.GrpcServer) + operator_server_file_path = dpf.upload_file_in_tmp_folder(operator_file_path) dpf.load_library(os.path.dirname(operator_server_file_path), "py_easy_statistics", "load_operators") @@ -86,7 +89,6 @@ norm = dpf.operators.math.norm(displacement) new_operator.inputs.connect(norm) - print("first quartile is", new_operator.outputs.first_quartile()) print("median is", new_operator.outputs.median()) print("third quartile is", new_operator.outputs.third_quartile())