From de086b138b1827675896e547de86dae75d31b2e5 Mon Sep 17 00:00:00 2001 From: Adriane Boyd Date: Tue, 2 May 2023 19:44:41 +0200 Subject: [PATCH] Remove excludes when cleaning up environments (#194) Now that torch has a number of dependencies which means it shouldn't be simply uninstalled. --- run-tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run-tests.sh b/run-tests.sh index baa846bd9..5595340c1 100644 --- a/run-tests.sh +++ b/run-tests.sh @@ -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