diff options
author | Matt Rendina <rendinam@users.noreply.github.com> | 2018-02-12 17:24:58 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-12 17:24:58 -0500 |
commit | b42445476e8dafef90f7190a9fbf20ef94c1ba78 (patch) | |
tree | bc30c87df203390daab9de287603de35cf2369da | |
parent | fd26689d482e69425d65cbf5a10641fff97bb977 (diff) | |
parent | bc34f116816efdd79d5d7f9393a1157ca73d2a43 (diff) | |
download | astroconda-contrib-b42445476e8dafef90f7190a9fbf20ef94c1ba78.tar.gz |
Merge pull request #306 from rendinam/remove_sphere
Remove deprecated stsci.sphere
-rw-r--r-- | stsci.sphere/bld.bat | 7 | ||||
-rw-r--r-- | stsci.sphere/build.sh | 4 | ||||
-rw-r--r-- | stsci.sphere/meta.yaml | 37 |
3 files changed, 0 insertions, 48 deletions
diff --git a/stsci.sphere/bld.bat b/stsci.sphere/bld.bat deleted file mode 100644 index 2096589..0000000 --- a/stsci.sphere/bld.bat +++ /dev/null @@ -1,7 +0,0 @@ - -echo This d2to1 hack is deadly. -pip install --no-deps --upgrade --force d2to1 -if errorlevel 1 exit 1 - -python setup.py install -if errorlevel 1 exit 1
\ No newline at end of file diff --git a/stsci.sphere/build.sh b/stsci.sphere/build.sh deleted file mode 100644 index 5e8b365..0000000 --- a/stsci.sphere/build.sh +++ /dev/null @@ -1,4 +0,0 @@ - -echo This d2to1 hack is deadly. -pip install --no-deps --upgrade --force d2to1 || exit 1 -python setup.py install || exit 1
\ No newline at end of file diff --git a/stsci.sphere/meta.yaml b/stsci.sphere/meta.yaml deleted file mode 100644 index cf27ba8..0000000 --- a/stsci.sphere/meta.yaml +++ /dev/null @@ -1,37 +0,0 @@ -{% set name = 'stsci.sphere' %} -{% set version = '0.2' %} -{% set number = '2' %} - -about: - home: http://www.stsci.edu/institute/software_hardware - license: BSD - -build: - number: {{ number }} - preserve_egg_dir: 'yes' - -package: - name: {{ name }} - version: {{ version }} - -requirements: - build: - - d2to1 - - astropy >=1.1 - - matplotlib - - numpy - - setuptools - - stsci.distutils - - python x.x - run: - - astropy >=1.1 - - matplotlib - - numpy - - python x.x - -source: - git_url: https://bitbucket.org/stsci_ssb/{{ name }}.git - -test: - imports: - - stsci.sphere |