From 59442abcdf74d6e5206509566e666f92f9fa1cd3 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Fri, 11 Oct 2024 21:38:31 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- examples/Installing_a_PySAGES_Environment.ipynb | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/Installing_a_PySAGES_Environment.ipynb b/examples/Installing_a_PySAGES_Environment.ipynb index 091f587e..12816ccf 100644 --- a/examples/Installing_a_PySAGES_Environment.ipynb +++ b/examples/Installing_a_PySAGES_Environment.ipynb @@ -378,7 +378,7 @@ " -DOPENMM_PYTHON_USER_INSTALL=ON \\\n", " -Wno-dev > /dev/null\n", "\n", - "cmake --build $BUILD_PATH -j8 &> /dev/null\n", + "cmake --build $BUILD_PATH -j8 > /dev/null\n", "cmake --install $BUILD_PATH > /dev/null" ] }, @@ -407,10 +407,10 @@ "\n", "# Install python package\n", "cd $BUILD_PATH\n", - "make PythonInstall &> /dev/null\n", + "make PythonInstall > /dev/null\n", "\n", "cd $BUILD_PATH/python\n", - "pip install --target $PREFIX_USER_SITE . &> /dev/null" + "pip install --target $PREFIX_USER_SITE . > /dev/null" ] }, { @@ -444,7 +444,7 @@ "BUILD_PATH=/tmp/build/openmm-dlext\n", "rm -rf $BUILD_PATH\n", "cmake -S . -B $BUILD_PATH -Wno-dev > /dev/null\n", - "cmake --build $BUILD_PATH --target install &> /dev/null" + "cmake --build $BUILD_PATH --target install > /dev/null" ] }, { @@ -521,7 +521,7 @@ "id": "lKHxKVDRYEpP" }, "source": [ - "We clean the cache of the code generated by python for our built packages such that the upload size is smaller." + "We'll then clean the cache of the code generated by python for our built packages such that the upload size is smaller." ] }, {