Skip to content
Snippets Groups Projects
Commit 6693a381 authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

[conda] Enable osx+py==37 builds

parent cd3d953b
No related branches found
No related tags found
No related merge requests found
Pipeline #41389 passed
...@@ -6,7 +6,7 @@ package: ...@@ -6,7 +6,7 @@ package:
version: {{ environ.get('BOB_PACKAGE_VERSION', '0.0.1') }} version: {{ environ.get('BOB_PACKAGE_VERSION', '0.0.1') }}
build: build:
skip: true # [not linux] skip: true # [not (linux or (osx and py==37))]
number: {{ environ.get('BOB_BUILD_NUMBER', 0) }} number: {{ environ.get('BOB_BUILD_NUMBER', 0) }}
run_exports: run_exports:
- {{ pin_subpackage(name) }} - {{ pin_subpackage(name) }}
...@@ -29,7 +29,7 @@ requirements: ...@@ -29,7 +29,7 @@ requirements:
- scipy {{ scipy }} - scipy {{ scipy }}
- h5py {{ h5py }} - h5py {{ h5py }}
- pytorch {{ pytorch }} - pytorch {{ pytorch }}
- torchvision {{ torchvision }} # [linux] - torchvision {{ torchvision }} # [linux or (osx and py==37)]
- bob.extension - bob.extension
run: run:
- python - python
...@@ -37,7 +37,7 @@ requirements: ...@@ -37,7 +37,7 @@ requirements:
- {{ pin_compatible('numpy') }} - {{ pin_compatible('numpy') }}
- {{ pin_compatible('scipy') }} - {{ pin_compatible('scipy') }}
- {{ pin_compatible('pytorch') }} - {{ pin_compatible('pytorch') }}
- {{ pin_compatible('torchvision') }} # [linux] - {{ pin_compatible('torchvision') }} # [linux or (osx and py==37)]
- matplotlib - matplotlib
- pandas - pandas
- pillow - pillow
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment