-
Notifications
You must be signed in to change notification settings - Fork 7.2k
Add numpy as explicit dependency to build_cmake.sh #4987
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
Conversation
Otherwise, it `setuptools.py` will try to install latest, which is not compatible with Python runtime older than 3.8 Fixes #4985
💊 CI failures summary and remediationsAs of commit fefc4ef (more details on the Dr. CI page): 💚 💚 Looks good so far! There are no failures yet. 💚 💚 This comment was automatically generated by Dr. CI (expand for details).Please report bugs/suggestions to the (internal) Dr. CI Users group. |
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
fi | ||
|
||
conda install -yq \pytorch=$PYTORCH_VERSION $CONDA_CUDATOOLKIT_CONSTRAINT $PYTORCH_MUTEX_CONSTRAINT $MKL_CONSTRAINT -c "pytorch-${UPLOAD_CHANNEL}" | ||
conda install -yq \pytorch=$PYTORCH_VERSION $CONDA_CUDATOOLKIT_CONSTRAINT $PYTORCH_MUTEX_CONSTRAINT $MKL_CONSTRAINT numpy -c "pytorch-${UPLOAD_CHANNEL}" |
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.
Should we pin it to something?
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.
No need I guess, as it should be compatible with all the tests in question
Hey @malfet! You merged this PR, but no labels were added. The list of valid labels is available at https://github.com/pytorch/vision/blob/main/.github/process_commit.py |
Summary: Otherwise, it `setuptools.py` will try to install latest, which is not compatible with Python runtime older than 3.8 Fixes #4985 Reviewed By: NicolasHug Differential Revision: D32694306 fbshipit-source-id: dab48870e25bf077d6e1c1c3edd6da541971ece7
Otherwise, it `setuptools.py` will try to install latest, which is not compatible with Python runtime older than 3.8 Fixes pytorch#4985
Otherwise, it
setuptools.py
will try to install latest, which is not compatible with Python runtime older than 3.8Fixes #4985
cc @seemethere