diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-07-05 21:37:57 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2015-07-05 21:37:57 -0400 |
commit | edb2639de05f4dd245bb397910d7a40f0ef1ee6c (patch) | |
tree | 845b1ea4b37e95b2791979667ab9460d29a26d23 | |
parent | cba67685e7952688e8d79a08f5160a94d505c5ea (diff) | |
download | cbc-recipes-edb2639de05f4dd245bb397910d7a40f0ef1ee6c.tar.gz |
Fix dependencies / hack d2to1
-rw-r--r-- | stsci.distutils/stsci.distutils.ini | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/stsci.distutils/stsci.distutils.ini b/stsci.distutils/stsci.distutils.ini index 9799c30..2441efc 100644 --- a/stsci.distutils/stsci.distutils.ini +++ b/stsci.distutils/stsci.distutils.ini @@ -16,9 +16,9 @@ summary: ${package:name} #readme: README.md [source] -#fn: ${package:name}-${package:version}.tar.gz -#url: ${cbc_cgi:url}/${fn} -git_url: git@bitbucket.org:jhunkeler/stsci.distutils.git +fn: ${package:name}-${package:version}.tar.gz +url: ${cbc_cgi:url}/${fn} +#git_url: git@bitbucket.org:jhunkeler/stsci.distutils.git [build] number: 1 @@ -26,16 +26,18 @@ number: 1 [requirements] build: d2to1 - setuptools python run: + d2to1 nose python [cbc_build] linux: - python setup.py install --single-version-externally-managed --record=record.txt || exit 1 + echo This d2to1 hack is deadly. + pip install --no-deps --upgrade --force d2to1 || exit 1 + python setup.py install || exit 1 windows: python setup.py install --single-version-externally-managed --record=record.txt || exit 1 |