File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -21,15 +21,16 @@ jobs:
2121 - name : Set up Python
2222 uses : actions/setup-python@v2
2323 with :
24- python-version : " 3.8 "
24+ python-version : " 3.10 "
2525 - name : Install dependencies
2626 run : |
2727 if [[ ${{ matrix.pytorch-version }} = "latest" ]]; then
28- pip install --pre torch -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html;
28+ pip install --pre torch -f https://download.pytorch.org/whl/nightly/cpu/torch_nightly.html
2929 else
30- pip install torch==1.11+cpu -f https://download.pytorch.org/whl/torch_stable.html;
30+ pip install torch==1.11+cpu -f https://download.pytorch.org/whl/torch_stable.html
31+ pip install "numpy<2"
3132 fi
3233 pip install -e ".[test]"
3334 - name : Run unit tests
3435 run : |
35- pytest ${{ inputs.files_to_test }} --jaxtyping-packages=linear_operator, typeguard.typechecked
36+ pytest ${{ inputs.files_to_test }} --jaxtyping-packages=typeguard.typechecked
Original file line number Diff line number Diff line change 3939# Other requirements
4040install_requires += [
4141 "scipy" ,
42- "jaxtyping==0.2.19 " ,
42+ "jaxtyping" ,
4343 "mpmath>=0.19,<=1.3" , # avoid incompatibiltiy with torch+sympy with mpmath 1.4
4444]
4545
You can’t perform that action at this time.
0 commit comments