Skip to content

Commit 177bd3b

Browse files
committed
GPU Test Fixes (#568)
Summary: Fixes GPU test failures on master by upgrading pip version. Pull Request resolved: #568 Reviewed By: bilalsal Differential Revision: D25686863 Pulled By: vivekmig fbshipit-source-id: c1c860fb0666fb529e1d0b4462acaca5e5cea6b6
1 parent ebd39a0 commit 177bd3b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.circleci/config.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,9 @@ commands:
102102
steps:
103103
- run:
104104
name: "Simple PIP install"
105-
command: python -m pip install -e .[dev]
105+
command: |
106+
python -m pip install --upgrade pip
107+
python -m pip install -e .[dev]
106108
107109
py_3_7_setup:
108110
description: "Set python version to 3.7 and install pip and pytest"

0 commit comments

Comments
 (0)