Skip to content
Snippets Groups Projects
Commit d57ed586 authored by Tiago de Freitas Pereira's avatar Tiago de Freitas Pereira
Browse files

[conda] Fixing dependencies

parent 8cfe9943
No related branches found
No related tags found
No related merge requests found
Pipeline #55165 failed
This commit is part of merge request !18. Comments created here will be created in the context of that merge request.
......@@ -6,6 +6,7 @@ package:
version: {{ environ.get('BOB_PACKAGE_VERSION', '0.0.1') }}
build:
number: {{ environ.get('BOB_BUILD_NUMBER', 0) }}
run_exports:
- {{ pin_subpackage(name) }}
......@@ -25,9 +26,8 @@ requirements:
- python {{ python }}
- setuptools {{ setuptools }}
- pip {{ pip }}
- bob.extension
- scikit-image {{ scikit_image }}
- libblitz {{ libblitz }}
- boost {{ boost }}
- numpy {{ numpy }}
- scipy {{ scipy }}
- matplotlib {{ matplotlib }}
......@@ -35,7 +35,6 @@ requirements:
run:
- python
- setuptools
- boost
- {{ pin_compatible('scipy') }}
- {{ pin_compatible('scikit-image') }}
- {{ pin_compatible('numpy') }}
......@@ -47,16 +46,7 @@ test:
imports:
- {{ name }}
commands:
- collect_training_data.py --help
- extract_training_features.py --help
- train_detector.py --help
- validate_detector.py --help
- detect_faces.py --help
- evaluate_detections.py --help
- plot_froc.py --help
- nosetests --with-coverage --cover-package={{ name }} -sv {{ name }}
- nosetests --with-coverage -sv bob.learn.boosting
- nosetests --with-coverage -sv bob.ip.flandmark
- sphinx-build -aEW {{ project_dir }}/doc {{ project_dir }}/sphinx
- sphinx-build -aEb doctest {{ project_dir }}/doc sphinx
- conda inspect linkages -p $PREFIX {{ name }} # [not win]
......@@ -71,6 +61,7 @@ test:
- bob.io.image
- bob.io.base
about:
home: https://www.idiap.ch/software/bob/
license: BSD 3-Clause
......
setuptools
bob.blitz
bob.extension
scikit-image
scipy
\ No newline at end of file
......@@ -39,7 +39,6 @@ from setuptools import setup, find_packages, dist
dist.Distribution(dict(setup_requires=["bob.extension"]))
from bob.extension.utils import egrep, find_header, find_library
from bob.blitz.extension import Extension, build_ext
from bob.extension.utils import load_requirements
......
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