Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Oct 11, 2024
1 parent 34e35c7 commit 59442ab
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions examples/Installing_a_PySAGES_Environment.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -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"
]
},
Expand Down Expand Up @@ -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"
]
},
{
Expand Down Expand Up @@ -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"
]
},
{
Expand Down Expand Up @@ -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."
]
},
{
Expand Down

0 comments on commit 59442ab

Please sign in to comment.