Skip to content
This repository has been archived by the owner on Oct 9, 2023. It is now read-only.

Commit

Permalink
-m
Browse files Browse the repository at this point in the history
  • Loading branch information
Borda committed May 5, 2023
1 parent d59f85b commit a6f081f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,15 +96,15 @@ jobs:
shell: python

- name: Install dependencies
env:
TORCH_URL: https://download.pytorch.org/whl/cpu/torch_stable.html
run: |
pip install "pip==21.3.1"
pip install numpy Cython "torch>=1.7.1" -f https://download.pytorch.org/whl/cpu/torch_stable.html
pip install .[$EXTRAS,test] --upgrade --prefer-binary \
--find-links https://download.pytorch.org/whl/cpu/torch_stable.html
python -m pip install "pip==21.3.1"
pip install numpy Cython "torch>=1.7.1" -f $TORCH_URL
pip install .[$EXTRAS,test] --upgrade --prefer-binary -f $TORCH_URL
# FixMe: this shall be one line command
pip install --upgrade --prefer-binary \
-r requirements/testing_${{ matrix.topic }}.txt \
--find-links https://download.pytorch.org/whl/cpu/torch_stable.html
-r requirements/testing_${{ matrix.topic }}.txt -f $TORCH_URL
pip list
- name: Cache datasets
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ torch >=1.7.1
torchmetrics >0.5.1, <0.11.0 # strict
pytorch-lightning >=1.3.6, <1.9.0 # strict
pyDeprecate
pandas <=1.5.2
pandas # <=1.5.2 # todo
jsonargparse[signatures] >=3.17.0, <=4.9.0
click >=7.1.2, <=8.1.3
protobuf <=3.20.1
Expand Down

0 comments on commit a6f081f

Please sign in to comment.