-
Notifications
You must be signed in to change notification settings - Fork 7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
.circleci: Don't install numpy directly #3444
.circleci: Don't install numpy directly #3444
Conversation
it seems we still need mypy from the failing python_type_check test |
numpy is a dependency of pytorch so we should let the package manager resolve our numpy dependency instead of doing it ourselves Signed-off-by: Eli Uriegas <eliuriegas@fb.com>
303e69f
to
86c5539
Compare
Re-added and changed the install command for pytorch to be channel specific |
Signed-off-by: Eli Uriegas <eliuriegas@fb.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Codecov Report
@@ Coverage Diff @@
## master #3444 +/- ##
=======================================
Coverage 76.00% 76.00%
=======================================
Files 105 105
Lines 9697 9697
Branches 1556 1556
=======================================
Hits 7370 7370
Misses 1841 1841
Partials 486 486 Continue to review full report at Codecov.
|
Reviewed By: fmassa Differential Revision: D26756262 fbshipit-source-id: 10e420f8b6e446552c057c98eb413520c6042ee3
numpy is a dependency of pytorch so we should let the package manager
resolve our numpy dependency instead of doing it ourselves
Similar to pytorch/audio#1309
Signed-off-by: Eli Uriegas eliuriegas@fb.com