diff options
Diffstat (limited to 'selenium')
-rw-r--r-- | selenium/bld.bat | 3 | ||||
-rw-r--r-- | selenium/build.sh | 2 | ||||
-rw-r--r-- | selenium/meta.yaml | 6 |
3 files changed, 5 insertions, 6 deletions
diff --git a/selenium/bld.bat b/selenium/bld.bat index b290566..760380e 100644 --- a/selenium/bld.bat +++ b/selenium/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/selenium/build.sh b/selenium/build.sh index 4b71885..6bd6081 100644 --- a/selenium/build.sh +++ b/selenium/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/selenium/meta.yaml b/selenium/meta.yaml index 88eb542..36e49fa 100644 --- a/selenium/meta.yaml +++ b/selenium/meta.yaml @@ -1,6 +1,6 @@ {% set name = 'selenium' %} {% set version = '2.49.2' %} -{% set number = '0' %} +{% set number = '1' %} about: home: https://pypi.python.org/packages/source/s/{{ name }} @@ -17,10 +17,10 @@ package: requirements: build: - setuptools - - python x.x + - python {{ python }} run: - - python x.x + - python source: fn: {{ name }}-{{ version }}.tar.gz |