-
Notifications
You must be signed in to change notification settings - Fork 7.1k
remove explicit install of Pillow throughout CI #5950
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
Changes from all commits
d6f5d79
cd69c86
7b1efd8
45d91d8
b1c9f72
77aabf7
a3621e3
14c6c4c
2d34b3d
fcc944a
a2ba9f5
1866da8
6585225
2b416ab
9ebdba6
4a0d6c7
44f3cde
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,5 @@ dependencies: | |
- h5py | ||
- pip: | ||
- future | ||
- pillow >=5.3.0, !=8.3.* | ||
- scipy | ||
- av |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,3 +37,9 @@ conda activate "${env_dir}" | |
# 3. Install Conda dependencies | ||
printf "* Installing dependencies (except PyTorch)\n" | ||
conda env update --file "${this_dir}/environment.yml" --prune | ||
|
||
# 4. Downgrade setuptools on Python 3.7. | ||
# See https://github.com/pytorch/vision/pull/5868 | ||
if [[ "${PYTHON_VERSION}" == '3.7' ]]; then | ||
pip install --upgrade setuptools==58.0.4 | ||
fi | ||
Comment on lines
+43
to
+45
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Initially, Unfortunately, the |
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.
This is a refinement as proposed in #5868 (comment). See the next comment for details.