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 /astroscrappy | |
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
Diffstat (limited to 'astroscrappy')
-rw-r--r-- | astroscrappy/build.sh | 2 | ||||
-rw-r--r-- | astroscrappy/meta.yaml | 6 |
2 files changed, 5 insertions, 3 deletions
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 }} |