diff options
Diffstat (limited to 'reproject')
-rw-r--r-- | reproject/build.sh | 2 | ||||
-rw-r--r-- | reproject/meta.yaml | 13 |
2 files changed, 8 insertions, 7 deletions
diff --git a/reproject/build.sh b/reproject/build.sh index 5a5aeeb..2863cbb 100644 --- a/reproject/build.sh +++ b/reproject/build.sh @@ -1 +1 @@ -$PYTHON setup.py install +$PYTHON setup.py install --offline --no-git --single-version-externally-managed --record record.txt diff --git a/reproject/meta.yaml b/reproject/meta.yaml index ef9f1a3..06a702f 100644 --- a/reproject/meta.yaml +++ b/reproject/meta.yaml @@ -1,7 +1,7 @@ {% set name = 'reproject' %} {% set version = '0.4' %} {% set tag = 'v' + version %} -{% set number = '1' %} +{% set number = '2' %} about: home: http://reproject.readthedocs.io/ @@ -18,17 +18,18 @@ package: requirements: build: - - astropy >=1.0 - - astropy-healpix + - astropy >=2.0 + - astropy-healpix >=0.2 - cython - scipy >=0.9 - - setuptools + - setuptools <38.5.1 [(py2k or py35 or py36) and osx] + - setuptools [(py37 and osx) or linux] - numpy {{ numpy }} - python {{ python }} run: - - astropy >=1.0 - - astropy-healpix + - astropy >=2.0 + - astropy-healpix >=0.2 - scipy >=0.9 - numpy - python |