From 41e2ca893a06adb533b439165d7af5c8b1638109 Mon Sep 17 00:00:00 2001 From: Paul O'Leary McCann Date: Wed, 28 Dec 2022 17:40:09 +0900 Subject: [PATCH] Try explicitly uninstalling spacy-legacy first --- .github/azure-steps.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/azure-steps.yml b/.github/azure-steps.yml index e5b362f02..339ca7e11 100644 --- a/.github/azure-steps.yml +++ b/.github/azure-steps.yml @@ -100,6 +100,7 @@ steps: - script: | python -m pip install -U -r requirements.txt + python -m pip uninstall -y spacy-legacy python -m pip install 'git+https://github.com/polm/spacy-legacy.git@feature/entity-linker-component-v1#egg=spacy-legacy' python -m pip freeze displayName: "Install test requirements"