We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85ccb41 commit 0a18d52Copy full SHA for 0a18d52
.github/workflows/examples_tests.yml
@@ -38,11 +38,13 @@ jobs:
38
with:
39
python-version: '3.10'
40
41
- - name: Install uv
42
- run: curl -LsSf https://astral.sh/uv/install.sh | sh
43
-
44
- - name: Install dependencies with uv
45
- run: uv pip install --system ".[tests,watsonx,inference_tests]"
+ - run: echo "blis==0" > constraints.txt
+ - run: curl -LsSf https://astral.sh/uv/install.sh | sh
+ - run: uv pip install --upgrade --system torch --index-url https://download.pytorch.org/whl/cpu
+ - run: uv pip install --system -c constraints.txt -e ".[tests]"
+ - run: |
46
+ pip install --only-binary :all: spacy
47
+ pip install networkx==3.2.1
48
49
- name: Install spacy (binary)
50
run: |
0 commit comments