Skip to content

Commit

Permalink
Remove excludes when cleaning up environments (#194)
Browse files Browse the repository at this point in the history
Now that torch has a number of dependencies which means it shouldn't be
simply uninstalled.
  • Loading branch information
adrianeboyd authored May 2, 2023
1 parent 026016d commit de086b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion run-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ do
fi

if [ -e $full_second_level_dir/requirements.txt ]; then
$python_interpreter -m pip freeze --exclude torch cupy-cuda111 > installed.txt
$python_interpreter -m pip freeze > installed.txt
$python_interpreter -m pip -q uninstall -y -r installed.txt
$python_interpreter -m pip -q install pytest spacy aiohttp --no-warn-script-location
rm installed.txt
Expand Down

0 comments on commit de086b1

Please sign in to comment.