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 6223687 commit d3dbd0aCopy full SHA for d3dbd0a
1 file changed
.github/workflows/run_type_checked_test_suite.yml
@@ -25,9 +25,10 @@ jobs:
25
- name: Install dependencies
26
run: |
27
if [[ ${{ matrix.pytorch-version }} = "latest" ]]; then
28
- pip install --pre torch -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html;
+ pip install --pre torch -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html
29
else
30
- pip install torch==1.11+cpu -f https://download.pytorch.org/whl/torch_stable.html;
+ pip install torch==1.11+cpu -f https://download.pytorch.org/whl/torch_stable.html
31
+ pip install "numpy<2"
32
fi
33
pip install -e ".[test]"
34
- name: Run unit tests
0 commit comments