package: name: torchvision version: "{{ environ.get('BUILD_VERSION') }}" source: path: "{{ environ.get('SOURCE_ROOT_DIR') }}" requirements: build: - {{ compiler('c') }} # [win] host: - python - setuptools {{ environ.get('CONDA_PYTORCH_BUILD_CONSTRAINT') }} {{ environ.get('CONDA_CUDATOOLKIT_CONSTRAINT') }} {{ environ.get('CONDA_CPUONLY_FEATURE') }} run: - python - pillow >=4.1.1 - numpy >=1.11 - six {{ environ.get('CONDA_PYTORCH_CONSTRAINT') }} {{ environ.get('CONDA_CUDATOOLKIT_CONSTRAINT') }} build: string: py{{py}}_{{ environ['CU_VERSION'] }} script: python setup.py install --single-version-externally-managed --record=record.txt # [not win] script_env: - CUDA_HOME - FORCE_CUDA - NVCC_FLAGS features: {{ environ.get('CONDA_CPUONLY_FEATURE') }} test: imports: - torchvision - torchvision.datasets - torchvision.transforms source_files: - test requires: - pytest - scipy - mock - av - ca-certificates - typing commands: pytest . about: home: https://github.com/pytorch/vision license: BSD license_file: LICENSE summary: 'image and video datasets and models for torch deep learning'