diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2020-03-31 10:02:22 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-31 10:02:22 -0400 |
commit | a22cfd33eaa2009a958623fcfdba4424b967fb1b (patch) | |
tree | b71eb974b41ff00c0e91e2a839333fe895511735 | |
parent | d307cb31a05c7c3660ae3c09c7be2889ef1a05d3 (diff) | |
download | astroconda-contrib-a22cfd33eaa2009a958623fcfdba4424b967fb1b.tar.gz |
imexam: Update version and recipe (#634)
-rw-r--r-- | imexam/bld.bat | 2 | ||||
-rw-r--r-- | imexam/build.sh | 2 | ||||
-rw-r--r-- | imexam/meta.yaml | 12 |
3 files changed, 6 insertions, 10 deletions
diff --git a/imexam/bld.bat b/imexam/bld.bat index 39b5e1f..701ec4d 100644 --- a/imexam/bld.bat +++ b/imexam/bld.bat @@ -1 +1 @@ -%PYTHON% setup.py install +%PYTHON% -m pip install . --no-deps --ignore-installed --no-cache-dir -vvv diff --git a/imexam/build.sh b/imexam/build.sh index 5a5aeeb..6df1dab 100644 --- a/imexam/build.sh +++ b/imexam/build.sh @@ -1 +1 @@ -$PYTHON setup.py install +$PYTHON -m pip install . --no-deps --ignore-installed --no-cache-dir -vvv diff --git a/imexam/meta.yaml b/imexam/meta.yaml index 67c0026..b68bf48 100644 --- a/imexam/meta.yaml +++ b/imexam/meta.yaml @@ -1,5 +1,5 @@ {% set name = 'imexam' %} -{% set version = '0.8.1' %} +{% set version = '0.9.0' %} {% set number = '0' %} about: @@ -21,21 +21,17 @@ package: requirements: build: - - astropy >=1.3 - cython - - pytest - setuptools - - numpy {{ numpy }} + - setuptools_scm - python {{ python }} run: - - astropy >=1.3 + - astropy >=3.0 - cython - ginga - - ipython - - notebook - photutils - matplotlib - - scipy + - scipy >=0.18 - numpy - python |