From be39e8382ea1982d1a7391e447ac7e96efc06856 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Tue, 27 Nov 2018 16:16:52 -0500 Subject: 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 --- astroscrappy/build.sh | 2 +- astroscrappy/meta.yaml | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) (limited to 'astroscrappy') 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 }} -- cgit