You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/docs-checks.yml
+2-4
Original file line number
Diff line number
Diff line change
@@ -40,11 +40,9 @@ jobs:
40
40
${{ runner.os }}-pip-
41
41
42
42
- name: Install dependencies
43
-
env:
44
-
HOROVOD_BUILD_ARCH_FLAGS: "-mfma"
45
-
HOROVOD_WITHOUT_MXNET: 1
46
-
HOROVOD_WITHOUT_TENSORFLOW: 1
47
43
run: |
44
+
# remove Horovod from requirements
45
+
python -c "fname = 'requirements/extra.txt' ; lines = [line for line in open(fname).readlines() if not line.startswith('horovod')] ; open(fname, 'w').writelines(lines)"
0 commit comments