fix syntax issue (#1900)

This commit is contained in:
Jirka Borovec
2020-05-20 07:46:18 -04:00
committed by GitHub
parent 3459a54667
commit c717873d26
2 changed files with 3 additions and 2 deletions
+2 -1
View File
@@ -56,9 +56,10 @@ jobs:
# versions <= 1.3 may have issues on mac with some BLAS ops due to missing mkl (https://github.com/pytorch/pytorch/issues/18996)
- name: Setup MacOS Minimal
if: runner.os == 'macOS' && matrix.requires ='minimal'
if: runner.os == 'macOS' && matrix.requires == 'minimal'
run : |
python -c "req = open('requirements.txt').read().replace('torch>=1.1', 'torch>=1.4') ; open('requirements.txt', 'w').write(req)"
- name: Set min. dependencies
if: matrix.requires == 'minimal'
run: |