Skip to content
Snippets Groups Projects
Commit 9e82c008 authored by Amir MOHAMMADI's avatar Amir MOHAMMADI
Browse files

[conda] use pip to install the package [skip ci]

parent 270137bf
No related branches found
Tags v2.0.3
No related merge requests found
Pipeline #55228 passed
...@@ -12,14 +12,15 @@ build: ...@@ -12,14 +12,15 @@ build:
script: script:
- cd {{ project_dir }} - cd {{ project_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"
requirements: requirements:
host: host:
- python {{ python }} - python {{ python }}
- setuptools {{ setuptools }} - setuptools {{ setuptools }}
- pip {{ pip }}
- bob.extension - bob.extension
- bob.core - bob.core
- bob.measure - bob.measure
......
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