From f3ef9168c1c68fd3e4d71f546fbf7e6b547ff3cd Mon Sep 17 00:00:00 2001 From: Samuel Gaist <samuel.gaist@idiap.ch> Date: Thu, 3 Jan 2019 11:24:30 +0100 Subject: [PATCH] [conda] Refactor for PyQt based development --- conda/meta.yaml | 22 ++++++---------------- 1 file changed, 6 insertions(+), 16 deletions(-) diff --git a/conda/meta.yaml b/conda/meta.yaml index d8d7edd9..c01ff78e 100644 --- a/conda/meta.yaml +++ b/conda/meta.yaml @@ -10,9 +10,6 @@ build: run_exports: - {{ pin_subpackage(name) }} script: - - cd {{ environ.get('RECIPE_DIR') }}/js - - npm install - - npm run build - cd {{ project_dir }} {% if environ.get('BUILD_EGG') %} - python setup.py sdist --formats=zip @@ -21,43 +18,36 @@ build: requirements: host: + - pip - python {{ python }} - setuptools {{ setuptools }} - - nodejs {{ nodejs }} + run: - python - setuptools - - simplejson - jinja2 - - flask - - flask-cors - - flask-restful + - pyqt + - click + - click-plugins - docopt - beat.cmdline test: - script_env: - - BEAT_BROWSER_TESTS - - files: - - js - requires: - bob-devel {{ bob_devel }}.* - beat-devel {{ beat_devel }}.* - bob.extension - nose + - pytest - coverage - sphinx - sphinx_rtd_theme - - nodejs imports: - {{ name }} commands: - beat editor --help - - beat editor serve --help - nosetests --with-coverage --cover-package={{ name }} -sv {{ name }} - if [ -n "${BEAT_BROWSER_TESTS}" ]; then cd {{ project_dir }}/conda/js; fi - if [ -n "${BEAT_BROWSER_TESTS}" ]; then npm install; fi -- GitLab