From 1f0197200e040c3cd11feb1dcc4fd52bef27f055 Mon Sep 17 00:00:00 2001 From: Tristan Lee Date: Fri, 4 Aug 2023 16:40:21 -0500 Subject: [PATCH] removed pipenv run prefix from commands, to not use pipenv virtual env --- .readthedocs.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index a1fa248..f53a0d8 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -18,13 +18,13 @@ build: # Install dev dependencies, without using a virtual environment - pipenv install --dev --system # This is a sloppy workaround - - pipenv run python -m spacy download xx_ent_wiki_sm - - pipenv run python -m spacy download fr_core_news_sm - - pipenv run python -m spacy download de_core_news_sm - - pipenv run python -m spacy download nl_core_news_sm - - pipenv run python -m spacy download it_core_news_sm - - pipenv run python -m spacy download ru_core_news_sm - - pipenv run python -m spacy download en_core_web_sm + - python -m spacy download xx_ent_wiki_sm + - python -m spacy download fr_core_news_sm + - python -m spacy download de_core_news_sm + - python -m spacy download nl_core_news_sm + - python -m spacy download it_core_news_sm + - python -m spacy download ru_core_news_sm + - python -m spacy download en_core_web_sm # Build documentation in the "docs/" directory with Sphinx sphinx: