diff options
| author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2018-11-27 16:16:52 -0500 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-11-27 16:16:52 -0500 | 
| commit | be39e8382ea1982d1a7391e447ac7e96efc06856 (patch) | |
| tree | 4fd2271e0ed3c91cf6fae1d6bd52d718b892c510 | |
| parent | 7071c8840ed60f21124e341af949431c3dd0d651 (diff) | |
| download | astroconda-contrib-be39e8382ea1982d1a7391e447ac7e96efc06856.tar.gz | |
Aggressive compatibility sweep (#429)
* The following packages have serious issues with 3.7...
* astroscrappy refuses to compile due to incompatible C code
* ccdproc refuses to compile due to astroscrappy's failure to build
| -rw-r--r-- | astropy-healpix/meta.yaml | 5 | ||||
| -rw-r--r-- | astroscrappy/build.sh | 2 | ||||
| -rw-r--r-- | astroscrappy/meta.yaml | 6 | ||||
| -rw-r--r-- | ccdproc/meta.yaml | 4 | ||||
| -rw-r--r-- | reproject/build.sh | 2 | ||||
| -rw-r--r-- | reproject/meta.yaml | 13 | 
6 files changed, 19 insertions, 13 deletions
| diff --git a/astropy-healpix/meta.yaml b/astropy-healpix/meta.yaml index 176688a..0c33d2e 100644 --- a/astropy-healpix/meta.yaml +++ b/astropy-healpix/meta.yaml @@ -1,5 +1,5 @@  {% set name = 'astropy-healpix' %} -{% set version = '0.2' %} +{% set version = '0.3.1' %}  {% set tag = 'v' + version %}  {% set number = '0' %} @@ -19,7 +19,8 @@ requirements:    build:      - astropy      - cython -    - setuptools +    - setuptools <38.5.1 [(py2k or py35 or py36) and osx] +    - setuptools [(py37 and osx) or linux]      - numpy {{ numpy }}      - python {{ python }} diff --git a/astroscrappy/build.sh b/astroscrappy/build.sh index 5a5aeeb..2863cbb 100644 --- a/astroscrappy/build.sh +++ b/astroscrappy/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/astroscrappy/meta.yaml b/astroscrappy/meta.yaml index 3303c03..c1c86c7 100644 --- a/astroscrappy/meta.yaml +++ b/astroscrappy/meta.yaml @@ -1,7 +1,7 @@  {% set name = 'astroscrappy' %}  {% set version = '1.0.5' %}  {% set tag = 'v' + version %} -{% set number = '0' %} +{% set number = '1' %}  about:    home: https://github.com/astropy/astroscrappy @@ -10,6 +10,8 @@ about:  build:    number: {{ number }} +  # Incompatible C code +  skip: True [py37]  package:    name: {{ name }} @@ -18,8 +20,8 @@ package:  requirements:    build:      - astropy +    - setuptools <38.5.1      - cython -    - setuptools      - numpy {{ numpy }}      - python {{ python }} diff --git a/ccdproc/meta.yaml b/ccdproc/meta.yaml index 676578e..02f8894 100644 --- a/ccdproc/meta.yaml +++ b/ccdproc/meta.yaml @@ -1,7 +1,7 @@  {% set name = 'ccdproc' %}  {% set version = '1.3.0.post1' %}  {% set tag = 'v' + version %} -{% set number = '0' %} +{% set number = '1' %}  about:    home: http://ccdproc.readthedocs.io/ @@ -11,6 +11,8 @@ about:  build:    number: {{ number }} +  # Astroscrappy req. incompatible with py37 +  skip: True [py37]  package:    name: {{ name }} 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 | 
