Skip to content
Snippets Groups Projects
Commit a7790822 authored by Samuel GAIST's avatar Samuel GAIST
Browse files

[conda] Update install commands to follow bob's guidelines

Add pip to dependencies as well
parent 29bc90f0
Branches
Tags
No related merge requests found
...@@ -17,9 +17,9 @@ build: ...@@ -17,9 +17,9 @@ build:
script: script:
- cd {{ environ.get('RECIPE_DIR') + '/..' }} - cd {{ environ.get('RECIPE_DIR') + '/..' }}
{% if environ.get('BUILD_EGG') %} {% if environ.get('BUILD_EGG') %}
- python setup.py sdist --formats=zip - "{{ PYTHON }} setup.py sdist --formats=zip"
{% endif %} {% endif %}
- python setup.py install --single-version-externally-managed --record record.txt - "{{ PYTHON }} -m pip install . -vv"
# installs the documentation source, readme to share/doc so it is available # installs the documentation source, readme to share/doc so it is available
# during test time # during test time
- install -d "${PREFIX}/share/doc/{{ name }}" - install -d "${PREFIX}/share/doc/{{ name }}"
...@@ -29,6 +29,7 @@ requirements: ...@@ -29,6 +29,7 @@ requirements:
host: host:
- python {{ python }} - python {{ python }}
- setuptools {{ setuptools }} - setuptools {{ setuptools }}
- pip {{ pip }}
- docopt {{ docopt }} - docopt {{ docopt }}
- numpy {{ numpy }} - numpy {{ numpy }}
- requests {{ requests }} - requests {{ requests }}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment