From 17bc95a366f68280fb7934e3b88e4b66707b2943 Mon Sep 17 00:00:00 2001 From: Ben Brandt Date: Thu, 4 Apr 2024 18:04:43 +0200 Subject: [PATCH] fix: try to make sure the CI isn't using the pip index/cache when installing in CI --- .github/workflows/python.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 9c43c94f..09122bcc 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -59,7 +59,7 @@ jobs: shell: bash run: | set -e - pip install --find-links dist --force-reinstall semantic-text-splitter + pip install --no-index --find-links dist --force-reinstall semantic-text-splitter pip install pytest tokenizers pytest @@ -96,7 +96,7 @@ jobs: shell: bash run: | set -e - pip install --find-links dist --force-reinstall semantic-text-splitter + pip install --no-index --find-links dist --force-reinstall semantic-text-splitter pip install pytest tokenizers pytest @@ -132,7 +132,7 @@ jobs: shell: bash run: | set -e - pip install --find-links dist --force-reinstall semantic-text-splitter + pip install --no-index --find-links dist --force-reinstall semantic-text-splitter pip install pytest tokenizers pytest