diff options
Diffstat (limited to 'pyqtgraph')
-rw-r--r-- | pyqtgraph/bld.bat | 3 | ||||
-rw-r--r-- | pyqtgraph/build.sh | 2 | ||||
-rw-r--r-- | pyqtgraph/meta.yaml | 8 |
3 files changed, 6 insertions, 7 deletions
diff --git a/pyqtgraph/bld.bat b/pyqtgraph/bld.bat index b290566..760380e 100644 --- a/pyqtgraph/bld.bat +++ b/pyqtgraph/bld.bat @@ -1,3 +1,2 @@ -python setup.py install -if errorlevel 1 exit 1
\ No newline at end of file +%PYTHON% setup.py install diff --git a/pyqtgraph/build.sh b/pyqtgraph/build.sh index 4b71885..6bd6081 100644 --- a/pyqtgraph/build.sh +++ b/pyqtgraph/build.sh @@ -1,2 +1,2 @@ -python setup.py install || exit 1
\ No newline at end of file +$PYTHON setup.py install diff --git a/pyqtgraph/meta.yaml b/pyqtgraph/meta.yaml index b9233f8..da3b4ac 100644 --- a/pyqtgraph/meta.yaml +++ b/pyqtgraph/meta.yaml @@ -1,6 +1,6 @@ {% set name = 'pyqtgraph' %} {% set version = '0.10.0' %} -{% set number = '1' %} +{% set number = '2' %} about: home: http://www.pyqtgraph.org/ @@ -17,13 +17,13 @@ package: requirements: build: - setuptools - - python x.x + - python {{ python }} run: - pyqt - pyopengl - - numpy - - python x.x + - numpy {{ numpy }} + - python source: fn: {{ name }}-{{ version }}.tar.gz |