Skip to content

Commit

Permalink
Merge pull request #22 from flennerhag/dev
Browse files Browse the repository at this point in the history
Conda
  • Loading branch information
flennerhag committed Apr 9, 2017
2 parents 65a30e4 + 7f803d0 commit a3b5527
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .conda/bld.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
"%PYTHON%" setup.py install
if errorlevel 1 exit 1
40 changes: 40 additions & 0 deletions .conda/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
package:
name: mlens
version: "0.1.0"

source:
git_rev: v0.1.0
git_url: https://github.com/flennerhag/mlens.git

requirements:
build:
- python
- setuptools
- numpy >=1.11
- scipy >=0.17

run:
- python
- numpy >=1.11
- scipy >=0.17

test:
requires:
- nose-exclude

imports:
- mlens
- mlens.base
- mlens.ensemble
- mlens.externals
- mlens.metrics
- mlens.model_selection
- mlens.parallel
- mlens.preprocessing
- mlens.utils


about:
home: https://github.com/flennerhag/mlens
license: MIT
license_file: LICENSE
2 changes: 1 addition & 1 deletion check_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
print("Installation failed. Aborting test. "
"Ensure a valid version of "
"nosetests is installed (i.e. pip install "
"nose nose-exclude).")
"nose-exclude).")
exit()

print("Ready.", flush=True)
Expand Down
2 changes: 1 addition & 1 deletion mlens/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
learning.
"""

__version__ = "0.1.1"
__version__ = "0.1.0"

__all__ = ['base',
'ensemble',
Expand Down

0 comments on commit a3b5527

Please sign in to comment.