Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .circleci/unittest/linux/scripts/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ dependencies:
- codecov
- pip
- libpng
- jpeg
# NOTE: Pinned to fix issues with size_t on Windows
- jpeg <=9b
- ca-certificates
- pip:
- future
Expand Down
3 changes: 2 additions & 1 deletion .circleci/unittest/windows/scripts/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ dependencies:
- codecov
- pip
- libpng
- jpeg
# NOTE: Pinned to fix issues with size_t on Windows
- jpeg <=9b
- ca-certificates
- pip:
- future
Expand Down
9 changes: 6 additions & 3 deletions packaging/torchvision/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ requirements:
build:
- {{ compiler('c') }} # [win]
- libpng
- jpeg
# NOTE: Pinned to fix issues with size_t on Windows
- jpeg <=9b
# NOTE: The only ffmpeg version that we build is actually 4.2
- ffmpeg >=4.2 # [not win]

Expand All @@ -24,7 +25,8 @@ requirements:
- python
- libpng
- ffmpeg >=4.2 # [not win]
- jpeg
# NOTE: Pinned to fix issues with size_t on Windows
- jpeg <=9b
- pillow >=5.3.0
{{ environ.get('CONDA_PYTORCH_CONSTRAINT') }}
{{ environ.get('CONDA_CUDATOOLKIT_CONSTRAINT') }}
Expand All @@ -51,7 +53,8 @@ test:
- pytest
- scipy
- av >=8.0.1
- jpeg
# NOTE: Pinned to fix issues with size_t on Windows
- jpeg <=9b
- ca-certificates


Expand Down