Skip to content
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

Update conda build #234

Merged
merged 2 commits into from
Dec 11, 2020
Merged
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
22 changes: 12 additions & 10 deletions formulas/conda/eddl/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{% set name = "eddl-cpu" %} # If this is a package for GPU, use: "eddl-gpu"
{% set version = "0.8a" %}
{% set sha256 = "213a186ffad0bb779a254acc410988eee3b78e3823e614e43939f8fcb9e43aa7" %}
{% set version = "0.8.3a" %}
{% set sha256 = "3d0678b4e00b9a5fb9c3905cf5bd3f5daa596684af47d1e77fbabbfd82f4e064" %}

package:
name: {{ name|lower }}
Expand All @@ -19,18 +19,20 @@ requirements:
build:
- {{ compiler('cxx') }}
host:
- cmake
- eigen
- protobuf
- cmake>=3.9.2
- eigen==3.3.7
- protobuf==3.11.4
- libprotobuf==3.11.4 # We need to avoid problems with paths (idk why)
- cudatoolkit
- graphviz
- graphviz # Build & Run
- wget
run:
- cmake
- eigen
- protobuf
- cmake>=3.9.2
- eigen==3.3.7
- protobuf==3.11.4
- libprotobuf==3.11.4 # We need to avoid problems with paths (idk why)
- cudatoolkit
- graphviz
- graphviz # Build & Run
- wget

test:
Expand Down