-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'remotes/gerrit/master'
- Loading branch information
Showing
14 changed files
with
632 additions
and
199 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#!/bin/bash | ||
|
||
# Install script for Anaconda environments on macOS and linux. | ||
# This script is not supposed to be called directly, but should be run by: | ||
# | ||
# $ cd <path to ideep, e.g. ~/ideep> | ||
# $ conda build conda | ||
# | ||
# | ||
# If you're debugging this, it may be useful to use the env that conda build is | ||
# using: | ||
# $ cd <anaconda_root>/conda-bld/ideep_<timestamp> | ||
# $ source activate _h_env_... # some long path with lots of placeholders | ||
# | ||
# Also, failed builds will accumulate those ideep_<timestamp> directories. You | ||
# can remove them after a succesfull build with | ||
# $ conda build purge | ||
# | ||
git submodule update --init | ||
mkdir build | ||
cd build | ||
cmake -DCMAKE_INSTALL_PREFIX=$HOME/.local .. | ||
cd ../python | ||
python setup.py install |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{% set version = "2.0.0b1" %} | ||
|
||
package: | ||
name: ideep4py | ||
version: {{ version }} | ||
|
||
source: | ||
path: ../ | ||
|
||
build: | ||
number: 0 | ||
skip: True # [win] | ||
|
||
requirements: | ||
build: | ||
- numpy | ||
- python | ||
run: | ||
- numpy | ||
- python | ||
|
||
test: | ||
imports: | ||
- ideep4py | ||
|
||
about: | ||
license: MIT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
FROM ubuntu:16.04 | ||
|
||
RUN apt-get update -y && \ | ||
apt-get install -y --no-install-recommends \ | ||
python-dev \ | ||
python-pip \ | ||
python-wheel \ | ||
python-setuptools && \ | ||
rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/* | ||
|
||
RUN pip install ideep4py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.